mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
copycat: init at 001
This commit is contained in:
parent
9a9be99eb3
commit
77e5223ffa
27
pkgs/by-name/co/copycat/package.nix
Normal file
27
pkgs/by-name/co/copycat/package.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{
|
||||
lib,
|
||||
rustPlatform,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "ccat";
|
||||
version = "001";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "DeeKahy";
|
||||
repo = "CopyCat";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-zllxQifRMNEMa3RO5WKrwGAUf1xQg6YrQBzIHzy43F0=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-LYVhvq5l+PCZXW+elWi3zZFxLekgPn+plo4dybbLK9g=";
|
||||
|
||||
meta = {
|
||||
description = "Utility to copy project tree contents to clipboard";
|
||||
homepage = "https://github.com/DeeKahy/CopyCat";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.deekahy ];
|
||||
mainProgram = "ccat";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user