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

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

16 lines
475 B
Nix
Raw Normal View History

2016-10-04 15:08:05 +00:00
{
2023-04-20 15:57:16 +00:00
mkDerivation, lib, stdenv,
bison, extra-cmake-modules, flex,
media-player-info, qtbase, qtdeclarative, qttools
2016-04-21 15:32:21 +00:00
}:
mkDerivation {
2022-02-23 17:28:27 +00:00
pname = "solid";
patches = [ ./fix-search-path.patch ];
2023-04-20 15:57:16 +00:00
nativeBuildInputs = [ bison extra-cmake-modules flex ]
++ lib.optionals stdenv.isLinux [ media-player-info ];
buildInputs = [ qtdeclarative qttools ];
propagatedBuildInputs = [ qtbase ];
2023-04-20 15:57:16 +00:00
propagatedUserEnvPkgs = lib.optionals stdenv.isLinux [ media-player-info ];
2016-04-21 15:32:21 +00:00
}