3
0
Fork 0
forked from mirrors/nixpkgs

kpmcore: fix build

Fixes #39834

Fallout from moving "eject" command to unixtools.
This commit is contained in:
Matthew Justin Bauer 2018-05-09 03:57:38 -05:00 committed by GitHub
parent c3e96922f8
commit 1d55c211cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,7 @@
{ stdenv, lib, fetchurl, extra-cmake-modules, pkgconfig
, qtbase, kdeFrameworks
, eject, libatasmart, parted }:
, libatasmart, parted
, utillinux }:
let
pname = "kpmcore";
@ -16,11 +17,12 @@ in stdenv.mkDerivation rec {
buildInputs = [
qtbase
eject # this is to get libblkid
libatasmart
parted # we only need the library
kdeFrameworks.kio
utillinux # needs blkid (note that this is not provided by utillinux-compat)
];
nativeBuildInputs = [ extra-cmake-modules ];
enableParallelBuilding = true;