repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
pytrainer: unpin python 3.10
[NixPkgs.git]
/
pkgs
/
kde
/
frameworks
/
solid
/
default.nix
blob
6b767e9d43f73a6e799dd447b7a18d65c13dd1a7
1
{
2
mkKdeDerivation,
3
qttools,
4
bison,
5
flex,
6
libimobiledevice,
7
}:
8
mkKdeDerivation {
9
pname = "solid";
10
11
patches = [
12
# Also search /run/wrappers for mount/umount
13
./fix-search-path.patch
14
];
15
16
extraNativeBuildInputs = [
17
qttools
18
bison
19
flex
20
];
21
extraBuildInputs = [ libimobiledevice ];
22
meta.mainProgram = "solid-hardware6";
23
}