mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
27 lines
776 B
Nix
27 lines
776 B
Nix
{ mkDerivation, fetchurl, lib
|
|
, extra-cmake-modules, kdoctools, wrapGAppsHook
|
|
, kconfig, kcrash, kinit, kpmcore
|
|
, eject, libatasmart }:
|
|
|
|
let
|
|
pname = "partitionmanager";
|
|
in mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
version = "3.0.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz";
|
|
sha256 = "08sb9xa7dvvgha3k2xm1srl339przxpxd2y5bh1lnx6k1x7dk410";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "KDE Partition Manager";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook ];
|
|
# refer to kpmcore for the use of eject
|
|
buildInputs = [ eject libatasmart ];
|
|
propagatedBuildInputs = [ kconfig kcrash kinit kpmcore ];
|
|
}
|