summary refs log tree commit diff
path: root/pkgs/development/python-modules/blivet
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2014-10-22 08:15:30 +0200
committeraszlig <aszlig@redmoonstudios.org>2014-10-22 08:22:59 +0200
commit78ef5f9c14785d99a9670c65c2735610735a0bc4 (patch)
treeb22c099ad0b3bbc7e7b262685fac0f3852aab26b /pkgs/development/python-modules/blivet
parent7676ff5973edf14292d4de94a5c5353a5ebb5fae (diff)
downloadnixlib-78ef5f9c14785d99a9670c65c2735610735a0bc4.tar
nixlib-78ef5f9c14785d99a9670c65c2735610735a0bc4.tar.gz
nixlib-78ef5f9c14785d99a9670c65c2735610735a0bc4.tar.bz2
nixlib-78ef5f9c14785d99a9670c65c2735610735a0bc4.tar.lz
nixlib-78ef5f9c14785d99a9670c65c2735610735a0bc4.tar.xz
nixlib-78ef5f9c14785d99a9670c65c2735610735a0bc4.tar.zst
nixlib-78ef5f9c14785d99a9670c65c2735610735a0bc4.zip
nixpart: Move all 0.4 dependencies into one dir.
Once nixpart 1.0 is released we then only need to delete one single
directory rather than searching for needles in a haystack, that is, all
of <nixpkgs>. Also, it keeps my sanity at an almost healthy level.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/development/python-modules/blivet')
-rw-r--r--pkgs/development/python-modules/blivet/0.17.nix58
1 files changed, 0 insertions, 58 deletions
diff --git a/pkgs/development/python-modules/blivet/0.17.nix b/pkgs/development/python-modules/blivet/0.17.nix
deleted file mode 100644
index c1b36bf909de..000000000000
--- a/pkgs/development/python-modules/blivet/0.17.nix
+++ /dev/null
@@ -1,58 +0,0 @@
-{ stdenv, fetchurl, buildPythonPackage, pykickstart, pyparted, pyblock
-, libselinux, cryptsetup, multipath_tools, lsof, utillinux
-, useNixUdev ? true, udev ? null
-# This is only used when useNixUdev is false
-, udevSoMajor ? 1
-}:
-
-assert useNixUdev -> udev != null;
-
-let
-  pyenable = { enablePython = true; };
-  selinuxWithPython = libselinux.override pyenable;
-  cryptsetupWithPython = cryptsetup.override pyenable;
-in buildPythonPackage rec {
-  name = "blivet-${version}";
-  version = "0.17-1";
-
-  src = fetchurl {
-    url = "https://git.fedorahosted.org/cgit/blivet.git/snapshot/"
-        + "${name}.tar.bz2";
-    sha256 = "1k3mws2q0ryb7422mml6idmaasz2i2v6ngyvg6d976dx090qnmci";
-  };
-
-  postPatch = ''
-    sed -i -e 's|"multipath"|"${multipath_tools}/sbin/multipath"|' \
-      blivet/devicelibs/mpath.py blivet/devices.py
-    sed -i -e '/"wipefs"/ {
-      s|wipefs|${utillinux}/sbin/wipefs|
-      s/-f/--force/
-    }' blivet/formats/__init__.py
-    sed -i -e 's|"lsof"|"${lsof}/bin/lsof"|' blivet/formats/fs.py
-    sed -i -r -e 's|"(u?mount)"|"${utillinux}/bin/\1"|' blivet/util.py
-    sed -i '/pvscan/s/, *"--cache"//' blivet/devicelibs/lvm.py
-  '' + (if useNixUdev then ''
-    sed -i -e '/find_library/,/find_library/ {
-      c libudev = "${udev}/lib/libudev.so.1"
-    }' blivet/pyudev.py
-  '' else ''
-    sed -i \
-      -e '/^somajor *=/s/=.*/= ${toString udevSoMajor}/p' \
-      -e 's|common =.*|& + ["/lib/x86_64-linux-gnu", "/lib/i686-linux-gnu"]|' \
-      blivet/pyudev.py
-  '');
-
-  propagatedBuildInputs = [
-    pykickstart pyparted pyblock selinuxWithPython cryptsetupWithPython
-  ] ++ stdenv.lib.optional useNixUdev udev;
-
-  # tests are currently _heavily_ broken upstream
-  doCheck = false;
-
-  meta = {
-    homepage = "https://fedoraproject.org/wiki/Blivet";
-    description = "Module for management of a system's storage configuration";
-    license = [ "GPLv2+" "LGPLv2.1+" ];
-    platforms = stdenv.lib.platforms.linux;
-  };
-}