File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 22
22
"aarch64-linux"
23
23
] ;
24
24
25
+ # https://github.com/NixOS/nixpkgs/pull/296538
26
+ # TODO: remove entirely after NixOS 24.05
25
27
overrideWaypipe = pkgs :
26
- pkgs . waypipe . overrideAttrs ( attrs : {
27
- version = "unstable-2023-10-02" ;
28
+ if builtins . compareVersions pkgs . waypipe . version "0.9" >= 0
29
+ then pkgs . waypipe
30
+ else pkgs . waypipe . overrideAttrs ( attrs : rec {
31
+ version = "0.9.0" ;
28
32
src = pkgs . fetchFromGitLab {
29
33
domain = "gitlab.freedesktop.org" ;
30
34
owner = "mstoeckl" ;
31
35
repo = "waypipe" ;
32
- rev = "ca4809435e781dfc6bd3006fde605860c8dcf179 " ;
33
- hash = "sha256-tSLPlf7fVq8vwbr7fHotqM/sBSXYMDM1V5yth5bhi38 =" ;
36
+ rev = "v ${ version } " ;
37
+ hash = "sha256-zk5IzZiFff9EeJn24/QmE1ybcBkxpaz6Owp77CfCwV0 =" ;
34
38
} ;
35
39
} ) ;
36
40
in
You can’t perform that action at this time.
0 commit comments