16371fce91
We don't want Hydra to even try and build this, because we're going to fill in the right sha256 as soon as the the new nixpart version is released. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
22 lines
569 B
Nix
22 lines
569 B
Nix
{ stdenv, fetchurl, buildPythonPackage, blivet }:
|
|
|
|
buildPythonPackage rec {
|
|
name = "nixpart-${version}";
|
|
version = "1.0.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/aszlig/nixpart/archive/v${version}.tar.gz";
|
|
sha256 = "0avwd8p47xy9cydlbjxk8pj8q75zyl68gw2w6fnkk78dcb1a3swp";
|
|
};
|
|
|
|
propagatedBuildInputs = [ blivet ];
|
|
|
|
meta = {
|
|
description = "NixOS storage manager/partitioner";
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
maintainers = [ stdenv.lib.maintainers.aszlig ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
broken = true;
|
|
};
|
|
}
|