1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/applications/kde/filelight.nix

19 lines
414 B
Nix
Raw Normal View History

{
2017-05-16 11:56:41 -04:00
mkDerivation, lib,
2017-05-17 15:26:11 -04:00
extra-cmake-modules, kdoctools,
kio, kparts, kxmlgui, qtscript, solid
}:
2017-05-16 11:56:41 -04:00
mkDerivation {
name = "filelight";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ fridh vcunat ];
};
2017-05-17 15:26:11 -04:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2017-05-16 11:56:41 -04:00
propagatedBuildInputs = [
kio kparts kxmlgui qtscript solid
];
2017-09-25 09:40:41 -04:00
outputs = [ "out" "dev" ];
}