depot/third_party/nixpkgs/pkgs/tools/system/gptman/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

31 lines
910 B
Nix

{ lib, stdenv, fetchFromGitHub, rustPlatform, libiconv, testers, gptman }:
rustPlatform.buildRustPackage rec {
pname = "gptman";
version = "1.1.0";
src = fetchFromGitHub {
owner = "rust-disk-partition-management";
repo = pname;
rev = "v${version}";
hash = "sha256-ebV61EilGggix6JSN/MW4Ka0itkSpvikLDSO005TTYY=";
};
cargoHash = "sha256-P+qez0oVsHBiaBYban2o8MRvF8ElLf5zb+p+tYunWWA=";
buildInputs = lib.optional stdenv.isDarwin libiconv;
buildFeatures = [ "cli" ];
passthru.tests.version = testers.testVersion {
package = gptman;
};
meta = with lib; {
description = "GPT manager that allows you to copy partitions from one disk to another and more";
homepage = "https://github.com/rust-disk-partition-management/gptman";
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ akshgpt7 ];
mainProgram = "gptman";
};
}