lol

nixpart: Bump version to 1.0.0 and mark as broken.

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>

aszlig 16371fce 23160383

+2 -3
+2 -3
pkgs/tools/filesystems/nixpart/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 name = "nixpart-${version}"; 5 - version = "0.4.1"; 5 + version = "1.0.0"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/aszlig/nixpart/archive/v${version}.tar.gz"; ··· 11 11 12 12 propagatedBuildInputs = [ blivet ]; 13 13 14 - doCheck = false; 15 - 16 14 meta = { 17 15 description = "NixOS storage manager/partitioner"; 18 16 license = stdenv.lib.licenses.gpl2Plus; 19 17 maintainers = [ stdenv.lib.maintainers.aszlig ]; 20 18 platforms = stdenv.lib.platforms.linux; 19 + broken = true; 21 20 }; 22 21 }