mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
5772ac5a75
In the past I was very active with Python packaging. For several years now I was hardly around as maintainer, so it does not make sense I am listed as a maintainer for these makes. Looking back, I should have removed myself as maintainer already much longer ago. Anyway, better late than never. It's been a fun ride, and I do intend to occasionally contribute to Nixpkgs, but not in the same way it once was.
39 lines
681 B
Nix
39 lines
681 B
Nix
{ mkDerivation
|
|
, lib
|
|
, extra-cmake-modules
|
|
, kdoctools
|
|
, kio
|
|
, kparts
|
|
, kxmlgui
|
|
, qtscript
|
|
, solid
|
|
, qtquickcontrols2
|
|
, kdeclarative
|
|
, kirigami2
|
|
, kquickcharts
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "filelight";
|
|
meta = {
|
|
description = "Disk usage statistics";
|
|
mainProgram = "filelight";
|
|
homepage = "https://apps.kde.org/filelight/";
|
|
license = with lib.licenses; [ gpl2 ];
|
|
maintainers = with lib.maintainers; [ vcunat ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
propagatedBuildInputs = [
|
|
kio
|
|
kparts
|
|
kxmlgui
|
|
qtscript
|
|
solid
|
|
qtquickcontrols2
|
|
kdeclarative
|
|
kirigami2
|
|
kquickcharts
|
|
];
|
|
outputs = [ "out" "dev" ];
|
|
}
|