Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at python-updates 27 lines 588 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6 7buildGoModule rec { 8 pname = "clipse"; 9 version = "1.1.0"; 10 11 src = fetchFromGitHub { 12 owner = "savedra1"; 13 repo = "clipse"; 14 rev = "v${version}"; 15 hash = "sha256-yUkHT7SZT7Eudvk1n43V+WGWqUKtXaV+p4ySMK/XzQw="; 16 }; 17 18 vendorHash = "sha256-+9uoB/1g4qucdM8RJRs+fSc5hpcgaCK0GrUOFgHWeKo="; 19 20 meta = { 21 description = "Useful clipboard manager TUI for Unix"; 22 homepage = "https://github.com/savedra1/clipse"; 23 license = lib.licenses.mit; 24 mainProgram = "clipse"; 25 maintainers = [ lib.maintainers.savedra1 ]; 26 }; 27}