copycat: init at 001 (#340103)

This commit is contained in:
éclairevoyant
2024-09-07 01:00:03 +00:00
committed by GitHub
2 changed files with 33 additions and 0 deletions
+6
View File
@@ -4851,6 +4851,12 @@
name = "David Morgan";
keys = [ { fingerprint = "9B43 6B14 77A8 79C2 6CDB 6604 C171 2510 02C2 00F2"; } ];
};
deekahy = {
email = "Lennart.Diego.Kahn@gmail.com";
github = "deekahy";
githubId = 97156953;
name = "Lennart Diego Kahn";
};
deemp = {
email = "deempleton@gmail.com";
github = "deemp";
+27
View 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";
};
}