2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-15 09:23:37 +00:00
nixpkgs/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 15:32:21 +00:00
}:
mkDerivation {
2022-02-23 17:28:27 +00:00
pname = "threadweaver";
nativeBuildInputs = [ extra-cmake-modules ];
propagatedBuildInputs = [ qtbase ];
outputs = [ "out" "dev" ];
2016-04-21 15:32:21 +00:00
}