plasma5Packages.kosmindoormap: init

+31
+1
pkgs/applications/kde/default.nix
··· 181 kontactinterface = callPackage ./kontactinterface.nix {}; 182 kopeninghours = callPackage ./kopeninghours.nix {}; 183 korganizer = callPackage ./korganizer.nix {}; 184 kpat = callPackage ./kpat.nix {}; 185 kpimtextedit = callPackage ./kpimtextedit.nix {}; 186 kpkpass = callPackage ./kpkpass.nix {};
··· 181 kontactinterface = callPackage ./kontactinterface.nix {}; 182 kopeninghours = callPackage ./kopeninghours.nix {}; 183 korganizer = callPackage ./korganizer.nix {}; 184 + kosmindoormap = callPackage ./kosmindoormap.nix {}; 185 kpat = callPackage ./kpat.nix {}; 186 kpimtextedit = callPackage ./kpimtextedit.nix {}; 187 kpkpass = callPackage ./kpkpass.nix {};
+30
pkgs/applications/kde/kosmindoormap.nix
···
··· 1 + { mkDerivation 2 + , lib 3 + , bison 4 + , extra-cmake-modules 5 + , flex 6 + , ki18n 7 + , kopeninghours 8 + , kpublictransport 9 + }: 10 + 11 + mkDerivation { 12 + pname = "kosmindoormap"; 13 + outputs = [ "out" "dev" ]; 14 + 15 + nativeBuildInputs = [ 16 + bison 17 + extra-cmake-modules 18 + flex 19 + ]; 20 + 21 + buildInputs = [ 22 + ki18n 23 + kopeninghours 24 + kpublictransport 25 + ]; 26 + 27 + meta = { 28 + license = with lib.licenses; [ bsd2 bsd3 cc0 lgpl2Plus lgpl3Plus mit odbl ]; 29 + }; 30 + }