File tree Expand file tree Collapse file tree 1 file changed +1
-19
lines changed Expand file tree Collapse file tree 1 file changed +1
-19
lines changed Original file line number Diff line number Diff line change 21
21
"x86_64-linux"
22
22
"aarch64-linux"
23
23
] ;
24
-
25
- # https://github.com/NixOS/nixpkgs/pull/296538
26
- # TODO: remove entirely after NixOS 24.05
27
- overrideWaypipe = pkgs :
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" ;
32
- src = pkgs . fetchFromGitLab {
33
- domain = "gitlab.freedesktop.org" ;
34
- owner = "mstoeckl" ;
35
- repo = "waypipe" ;
36
- rev = "v${ version } " ;
37
- hash = "sha256-zk5IzZiFff9EeJn24/QmE1ybcBkxpaz6Owp77CfCwV0=" ;
38
- } ;
39
- } ) ;
40
24
in
41
25
flake-utils . lib . eachSystem systems ( system : {
42
26
84
68
waypipe-client = {
85
69
type = "app" ;
86
70
program = toString ( pkgs . writeShellScript "waypipe-client" ''
87
- exec ${ self . packages . ${ system } . waypipe } /bin/waypipe --vsock -s 6000 client
71
+ exec ${ pkgs . waypipe } /bin/waypipe --vsock -s 6000 client
88
72
'' ) ;
89
73
} ;
90
74
} ;
118
102
extraOutputsToInstall = [ "dev" ] ;
119
103
ignoreCollisions = true ;
120
104
} ;
121
- waypipe = overrideWaypipe pkgs ;
122
105
} //
123
106
# wrap self.nixosConfigurations in executable packages
124
107
builtins . foldl' ( result : systemName :
148
131
149
132
overlay = final : prev : {
150
133
cloud-hypervisor-graphics = prev . callPackage ( spectrum + "/pkgs/cloud-hypervisor" ) { } ;
151
- waypipe = overrideWaypipe prev ;
152
134
} ;
153
135
overlays . default = self . overlay ;
154
136
You can’t perform that action at this time.
0 commit comments