nixpkgs/pkgs/development/libraries/kde-frameworks/solid.nix

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

14 lines
352 B
Nix
Raw Normal View History

2016-10-04 17:08:05 +02:00
{
mkDerivation,
bison, extra-cmake-modules, flex,
media-player-info, qtbase, qtdeclarative, qttools
2016-04-21 17:32:21 +02:00
}:
mkDerivation {
2022-02-23 18:28:27 +01:00
pname = "solid";
nativeBuildInputs = [ bison extra-cmake-modules flex media-player-info ];
buildInputs = [ qtdeclarative qttools ];
propagatedBuildInputs = [ qtbase ];
propagatedUserEnvPkgs = [ media-player-info ];
2016-04-21 17:32:21 +02:00
}