mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
gptman: init at 0.8.0
This commit is contained in:
parent
61c9119491
commit
5b6e08ba57
2 changed files with 24 additions and 0 deletions
22
pkgs/tools/system/gptman/default.nix
Normal file
22
pkgs/tools/system/gptman/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ lib, fetchFromGitHub, rustPlatform }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "gptman";
|
||||
version = "0.8.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cecton";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "11zyjrw4f8gi5s4sd2kl3sdiz0avq7clr8zqnwl04y61b3fpg7y1";
|
||||
};
|
||||
|
||||
cargoSha256 = "1cp8cyrd7ab8r2j28b69c2p3ysix5b9hpsqk07cmzgqwwml0qj12";
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -5151,6 +5151,8 @@ in
|
|||
|
||||
gpt2tc = callPackage ../tools/text/gpt2tc { };
|
||||
|
||||
gptman = callPackage ../tools/system/gptman { };
|
||||
|
||||
ldmtool = callPackage ../tools/misc/ldmtool { };
|
||||
|
||||
gphotos-sync = callPackage ../tools/backup/gphotos-sync { };
|
||||
|
|
Loading…
Reference in a new issue