aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/kpmcore
diff options
context:
space:
mode:
authorMatthew Justin Bauer <mjbauer95@gmail.com>2018-05-09 03:57:38 -0500
committerGitHub <noreply@github.com>2018-05-09 03:57:38 -0500
commit1d55c211cbc494d3882fc2f6819a961a3dca0465 (patch)
tree2f3246d66a39ececd9bb25c27d03c9d258f1f47b /pkgs/development/libraries/kpmcore
parentc3e96922f81808baed7829ead33d964e600c92ba (diff)
kpmcore: fix build
Fixes #39834 Fallout from moving "eject" command to unixtools.
Diffstat (limited to 'pkgs/development/libraries/kpmcore')
-rw-r--r--pkgs/development/libraries/kpmcore/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/libraries/kpmcore/default.nix b/pkgs/development/libraries/kpmcore/default.nix
index 2a2f0c79490e..c6c3ba53d2c3 100644
--- a/pkgs/development/libraries/kpmcore/default.nix
+++ b/pkgs/development/libraries/kpmcore/default.nix
@@ -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;