mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
23 lines
357 B
Nix
23 lines
357 B
Nix
{
|
|
mkKdeDerivation,
|
|
qttools,
|
|
bison,
|
|
flex,
|
|
libimobiledevice,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "solid";
|
|
|
|
patches = [
|
|
# Also search /run/wrappers for mount/umount
|
|
./fix-search-path.patch
|
|
];
|
|
|
|
extraNativeBuildInputs = [
|
|
qttools
|
|
bison
|
|
flex
|
|
];
|
|
extraBuildInputs = [ libimobiledevice ];
|
|
meta.mainProgram = "solid-hardware6";
|
|
}
|