1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00
nixpkgs/pkgs/development/libraries/kde-frameworks/threadweaver.nix

13 lines
210 B
Nix
Raw Normal View History

{
mkDerivation,
extra-cmake-modules,
qtbase
2016-04-21 16:32:21 +01:00
}:
mkDerivation {
2016-04-21 16:32:21 +01:00
name = "threadweaver";
nativeBuildInputs = [ extra-cmake-modules ];
propagatedBuildInputs = [ qtbase ];
outputs = [ "out" "dev" ];
2016-04-21 16:32:21 +01:00
}