tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
alsa-tools: add psmisc as dependency for hdajackretask
Anderson Torres
2 years ago
e909d72f
0292524e
+13
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
alsa-project
alsa-tools
default.nix
+13
pkgs/os-specific/linux/alsa-project/alsa-tools/default.nix
···
5
5
, fltk13
6
6
, gtk2
7
7
, gtk3
8
8
+
, makeWrapper
8
9
, pkg-config
10
10
+
, psmisc
9
11
}:
10
12
11
13
stdenv.mkDerivation (finalAttrs: {
···
18
20
};
19
21
20
22
nativeBuildInputs = [
23
23
+
makeWrapper
21
24
pkg-config
22
25
];
23
26
···
26
29
fltk13
27
30
gtk2
28
31
gtk3
32
32
+
psmisc
29
33
];
30
34
31
35
env.TOOLSET = lib.concatStringsSep " " [
···
89
93
done
90
94
91
95
runHook postInstall
96
96
+
'';
97
97
+
98
98
+
fixupPhase = ''
99
99
+
runHook preFixup
100
100
+
101
101
+
wrapProgram $out/bin/hdajackretask \
102
102
+
--prefix PATH : ${lib.makeBinPath [ psmisc ]}
103
103
+
104
104
+
runHook postFixup
92
105
'';
93
106
94
107
meta = {