Skip to content

Commit

Permalink
lvm: add missing dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
globin committed Feb 18, 2017
1 parent 23e2824 commit 9326a89
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/os-specific/linux/lvm2/default.nix
@@ -1,4 +1,5 @@
{ stdenv, fetchurl, pkgconfig, systemd, libudev, utillinux, coreutils, libuuid, enable_dmeventd ? false }:
{ stdenv, fetchurl, pkgconfig, systemd, libudev, utillinux, coreutils, libuuid
, thin-provisioning-tools, enable_dmeventd ? false }:

let
version = "2.02.140";
Expand All @@ -22,7 +23,7 @@ stdenv.mkDerivation {
] ++ stdenv.lib.optional enable_dmeventd " --enable-dmeventd";

nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libudev libuuid ];
buildInputs = [ libudev libuuid thin-provisioning-tools ];

preConfigure =
''
Expand Down

0 comments on commit 9326a89

Please sign in to comment.