nixpkgs/pkgs/tools/system/gptman/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
709 B
Nix
Raw Normal View History

2021-05-15 23:06:04 +02:00
{ lib, stdenv, fetchFromGitHub, rustPlatform, libiconv }:
2021-04-25 04:45:50 +02:00
rustPlatform.buildRustPackage rec {
pname = "gptman";
2022-01-11 21:35:02 +01:00
version = "0.8.3";
2021-04-25 04:45:50 +02:00
src = fetchFromGitHub {
owner = "cecton";
repo = pname;
rev = "v${version}";
2022-01-11 21:35:02 +01:00
sha256 = "sha256-hI3F1E1vdbNDEeJ4FrU0EvR0t64svzUIpI6zaf0CquM=";
2021-04-25 04:45:50 +02:00
};
2022-01-11 21:35:02 +01:00
cargoSha256 = "sha256-3PRGPZGymccRo9dtQZgMMEL29x+GiUkTzgc8uAB/ocQ=";
2021-04-25 04:45:50 +02:00
2021-05-15 23:06:04 +02:00
buildInputs = lib.optional stdenv.isDarwin libiconv;
2021-04-25 04:45:50 +02:00
meta = with lib; {
description = "A CLI tool for Linux to copy a partition from one disk to another and more.";
homepage = "https://github.com/cecton/gptman";
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ akshgpt7 ];
};
}