mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
kde5.kcalc: init at 15.12
This commit is contained in:
parent
838805f5c8
commit
05608d50f4
@ -38,6 +38,7 @@ let
|
||||
gpgmepp = callPackage ./gpgmepp.nix {};
|
||||
gwenview = callPackage ./gwenview.nix {};
|
||||
kate = callPackage ./kate.nix {};
|
||||
kcalc = callPackage ./kcalc.nix {};
|
||||
kdegraphics-thumbnailers = callPackage ./kdegraphics-thumbnailers.nix {};
|
||||
kdenetwork-filesharing = callPackage ./kdenetwork-filesharing.nix {};
|
||||
kgpg = callPackage ./kgpg.nix { inherit (pkgs.kde4) kdepimlibs; };
|
||||
|
38
pkgs/applications/kde-apps-15.12/kcalc.nix
Normal file
38
pkgs/applications/kde-apps-15.12/kcalc.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ kdeApp
|
||||
, lib
|
||||
, extra-cmake-modules
|
||||
, kdoctools
|
||||
, makeQtWrapper
|
||||
, kconfig
|
||||
, kconfigwidgets
|
||||
, kguiaddons
|
||||
, kinit
|
||||
, knotifications
|
||||
|
||||
}:
|
||||
|
||||
kdeApp {
|
||||
name = "kcalc";
|
||||
|
||||
nativeBuildInputs = [
|
||||
extra-cmake-modules
|
||||
kdoctools
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
kconfig
|
||||
kconfigwidgets
|
||||
kguiaddons
|
||||
kinit
|
||||
knotifications
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
wrapQtProgram "$out/bin/kcalc"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
license = with lib.licenses; [ gpl2 ];
|
||||
maintainers = [ lib.maintainers.fridh ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user