mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
Merge pull request #293722 from savedra1/clipse-init/0.0.6
clipse: init at 0.0.6
This commit is contained in:
commit
8deb162d09
@ -17198,6 +17198,12 @@
|
||||
githubId = 8534888;
|
||||
name = "Savanni D'Gerinel";
|
||||
};
|
||||
savedra1 = {
|
||||
email = "michaelsavedra@gmail.com";
|
||||
github = "savedra1";
|
||||
githubId = 99875823;
|
||||
name = "Michael Savedra";
|
||||
};
|
||||
savyajha = {
|
||||
email = "savya.jha@hawkradius.com";
|
||||
github = "savyajha";
|
||||
|
26
pkgs/by-name/cl/clipse/package.nix
Normal file
26
pkgs/by-name/cl/clipse/package.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user