nixpkgs-suyu/pkgs/development/libraries/kde-frameworks/threadweaver.nix

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

13 lines
211 B
Nix
Raw Normal View History

{
mkDerivation,
extra-cmake-modules,
qtbase
2016-04-21 17:32:21 +02:00
}:
mkDerivation {
2022-02-23 18:28:27 +01:00
pname = "threadweaver";
nativeBuildInputs = [ extra-cmake-modules ];
propagatedBuildInputs = [ qtbase ];
outputs = [ "out" "dev" ];
2016-04-21 17:32:21 +02:00
}