forked from mirrors/nixpkgs
* Latest device-mapper / lvm2. This fixes problems with LVM
not detecting any volume groups on recent kernels. svn path=/nixpkgs/trunk/; revision=12126
This commit is contained in:
parent
68e45690c3
commit
fdb399ead1
|
@ -1,10 +1,10 @@
|
|||
{stdenv, fetchurl, static ? false}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "device-mapper-1.02.22";
|
||||
name = "device-mapper-1.02.26";
|
||||
src = fetchurl {
|
||||
url = ftp://sources.redhat.com/pub/dm/device-mapper.1.02.22.tgz;
|
||||
sha256 = "158mnspws143wrgrx4h81z3gn7vzb7b2ysgmngsqcri4srn3m0zz";
|
||||
url = ftp://sources.redhat.com/pub/dm/device-mapper.1.02.26.tgz;
|
||||
sha256 = "0x905frw06s6k5p1rlc2hbgaphgalinarbdg82664sri0qmbkrfv";
|
||||
};
|
||||
configureFlags = if static then "--enable-static_link" else "";
|
||||
# To prevent make install from failing.
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{stdenv, fetchurl, devicemapper, static ? false}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "lvm2-2.02.28";
|
||||
name = "lvm2-2.02.38";
|
||||
src = fetchurl {
|
||||
url = ftp://sources.redhat.com/pub/lvm2/LVM2.2.02.28.tgz;
|
||||
sha256 = "1sxchdz31mz57gm25jjphawhx2c8zmyw3mvifkxhnza27q97p39d";
|
||||
url = ftp://sources.redhat.com/pub/lvm2/LVM2.2.02.38.tgz;
|
||||
sha256 = "13nx6iqgga3ric51b36p15cxzhmh83s7spb2559iz3s24x4s0845";
|
||||
};
|
||||
buildInputs = [devicemapper];
|
||||
configureFlags = if static then "--enable-static_link" else "";
|
||||
|
|
Loading…
Reference in a new issue