File tree Expand file tree Collapse file tree 2 files changed +13
-6
lines changed Expand file tree Collapse file tree 2 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 39
39
inherit lockFile ;
40
40
} ;
41
41
42
- checkInputs = [ cargo rustc ] ;
43
-
44
42
nativeBuildInputs = [
45
43
pkg-config
46
44
makeWrapper
63
61
else [ ] ;
64
62
65
63
doCheck = true ;
64
+ checkInputs = [ cargo rustc ] ;
65
+
66
66
copyLibs = true ;
67
67
68
68
buildAndTestSubdir =
69
69
if dontBuildPlugins
70
70
then pname
71
71
else null ;
72
72
73
- CARGO_BUILD_INCREMENTAL = "false" ;
73
+ CARGO_BUILD_INCREMENTAL = 0 ;
74
74
RUST_BACKTRACE = "full" ;
75
75
76
76
postInstall = ''
82
82
meta = {
83
83
description = "A wayland native, highly customizable runner." ;
84
84
homepage = "https://github.com/Kirottu/anyrun" ;
85
- license = with lib . licenses ; [ gpl3 ] ;
85
+ license = [ lib . licenses . gpl3 ] ;
86
86
mainProgram = "anyrun" ;
87
87
maintainers = with lib . maintainers ; [ NotAShelf n3oney ] ;
88
88
} ;
Original file line number Diff line number Diff line change 10
10
gtk-layer-shell ,
11
11
pkg-config ,
12
12
librsvg ,
13
+ cargo ,
14
+ rustc ,
13
15
# Generic args
14
16
name ,
15
17
lockFile ,
49
51
++ extraInputs ;
50
52
51
53
doCheck = true ;
54
+ checkInputs = [
55
+ cargo
56
+ rustc
57
+ ] ;
58
+
52
59
copyLibs = true ;
53
60
cargoBuildFlags = [ "-p ${ name } " ] ;
54
61
buildAndTestSubdir = "plugins/${ name } " ;
55
62
56
- CARGO_BUILD_INCREMENTAL = "false" ;
63
+ CARGO_BUILD_INCREMENTAL = 0 ;
57
64
RUST_BACKTRACE = "full" ;
58
65
59
66
meta = {
60
67
description = "The ${ name } plugin for Anyrun" ;
61
68
homepage = "https://github.com/Kirottu/anyrun" ;
62
- license = with lib . licenses ; [ gpl3 ] ;
69
+ license = [ lib . licenses . gpl3 ] ;
63
70
maintainers = with lib . maintainers ; [ NotAShelf n3oney ] ;
64
71
} ;
65
72
}
You can’t perform that action at this time.
0 commit comments