depot/third_party/nixpkgs/pkgs/tools/filesystems/nixpart/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

20 lines
524 B
Nix

{ lib, fetchurl, buildPythonApplication, blivet }:
buildPythonApplication rec {
pname = "nixpart";
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 = lib.licenses.gpl2Plus;
maintainers = [ lib.maintainers.aszlig ];
platforms = lib.platforms.linux;
};
}