mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 22:23:15 +00:00
9e570d09eb
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
27 lines
583 B
Nix
27 lines
583 B
Nix
{ 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 ];
|
|
};
|
|
}
|