blivet: Update to new upstream version 0.67.

Put a copy of old version 0.17 expression into 0.17.nix and update the
pointers from nixpart0 accordingly.

This also means, that plain nixpart is now way more broken than
nixpart0 (we might want to temporarily fix 0.4 anyway).

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig
2014-10-22 08:22:57 +02:00
parent 7deadbb55f
commit cb2c34f1bb
5 changed files with 85 additions and 40 deletions
+3 -10
View File
@@ -1,13 +1,6 @@
{ stdenv, fetchurl, buildPythonPackage, blivet
# Propagated to blivet
, useNixUdev ? null, udevSoMajor ? null
}:
{ stdenv, fetchurl, buildPythonPackage, blivet }:
let
blivetOverrides = stdenv.lib.filterAttrs (k: v: v != null) {
inherit useNixUdev udevSoMajor;
};
in buildPythonPackage rec {
buildPythonPackage rec {
name = "nixpart-${version}";
version = "0.4.1";
@@ -16,7 +9,7 @@ in buildPythonPackage rec {
sha256 = "0avwd8p47xy9cydlbjxk8pj8q75zyl68gw2w6fnkk78dcb1a3swp";
};
propagatedBuildInputs = [ (blivet.override blivetOverrides) ];
propagatedBuildInputs = [ blivet ];
doCheck = false;