nixpkgs/pkgs/kde/frameworks/solid/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
289 B
Nix
Raw Normal View History

{
mkKdeDerivation,
qttools,
bison,
flex,
libimobiledevice,
}:
mkKdeDerivation {
pname = "solid";
# Also search /run/wrappers for mount/umount
patches = [./fix-search-path.patch];
extraNativeBuildInputs = [qttools bison flex];
extraBuildInputs = [libimobiledevice];
}