1aa8905e50
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 3.3.0 with grep in /nix/store/axq1y6dwgl8xn4da4jwnf1zxjz7n74gz-kpmcore-3.3.0 - found 3.3.0 in filename of file in /nix/store/axq1y6dwgl8xn4da4jwnf1zxjz7n74gz-kpmcore-3.3.0 - directory tree listing: https://gist.github.com/c296e20046c16727398c12f703502545
32 lines
705 B
Nix
32 lines
705 B
Nix
{ stdenv, lib, fetchurl, extra-cmake-modules, pkgconfig
|
|
, qtbase, kdeFrameworks
|
|
, eject, libatasmart, parted }:
|
|
|
|
let
|
|
pname = "kpmcore";
|
|
|
|
in stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
version = "3.3.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz";
|
|
sha256 = "0s6v0jfrhjg31ri5p6h9n4w29jvasf5dj954j3vfpzl91lygmmmq";
|
|
};
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
eject # this is to get libblkid
|
|
libatasmart
|
|
parted # we only need the library
|
|
|
|
kdeFrameworks.kio
|
|
];
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
maintainers = with lib.maintainers; [ peterhoeg ];
|
|
};
|
|
}
|