about summary refs log tree commit diff
path: root/pkgs/by-name/cl
diff options
context:
space:
mode:
authorsavedram <michael.savedra@ovo.com>2024-03-06 10:16:12 +0000
committersavedram <michael.savedra@ovo.com>2024-03-08 08:39:25 +0000
commit9e570d09eb38fee56645ffbfb27dcce34c2e158a (patch)
tree22306e5e168feb80ad2ef59281f1703f2eaaccc2 /pkgs/by-name/cl
parenta2c86c862fbac18a213a182936ba54a97bf9069c (diff)
clipse: init at 0.0.6
clipse: removed trailing whitespace from package.nix

clipse: refactored nix package

clipse: updated maintainer and license in package.nix

clipse: removed trailing whitespace from package.nix

clipse: updated application hash in package.nix

clipse: reformatted package.nix

clipse: reformatted package.nix maintainer

clipse: reformatted package.nix maintainer

clipse: removed superflous line from package.nix and reworded description
Diffstat (limited to 'pkgs/by-name/cl')
-rw-r--r--pkgs/by-name/cl/clipse/package.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/by-name/cl/clipse/package.nix b/pkgs/by-name/cl/clipse/package.nix
new file mode 100644
index 0000000000000..af4b96385d16f
--- /dev/null
+++ b/pkgs/by-name/cl/clipse/package.nix
@@ -0,0 +1,26 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+
+buildGoModule rec {
+  pname = "clipse";
+  version = "0.0.6";
+
+  src = fetchFromGitHub {
+    owner = "savedra1";
+    repo = "clipse";
+    rev = "v${version}";
+    hash = "sha256-DLvYTPlLkp98zCzmbeL68B7mHl7RY3ee9rL30vYm5Ow=";
+  };
+
+  vendorHash = "sha256-GIUEx4h3xvLySjBAQKajby2cdH8ioHkv8aPskHN0V+w=";
+
+  meta = {
+    description = "Useful clipboard manager TUI for Unix";
+    homepage = "https://github.com/savedra1/clipse";
+    license = lib.licenses.mit;
+    mainProgram = "clipse";
+    maintainers = [ lib.maintainers.savedra1 ];
+  };
+}