Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 29 lines 688 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6 7buildGoModule rec { 8 pname = "dry"; 9 version = "0.11.2"; 10 11 src = fetchFromGitHub { 12 owner = "moncho"; 13 repo = "dry"; 14 rev = "v${version}"; 15 hash = "sha256-JGtPX6BrB3q2EQyF6x2A5Wsn5DudOSVt3IxBAjjwlC8="; 16 }; 17 18 proxyVendor = true; 19 vendorHash = "sha256-AduDbBpCoW7GmYrBPpL7wyLvwoez81qP/+mllgoHInY="; 20 21 meta = { 22 description = "Terminal application to manage Docker and Docker Swarm"; 23 homepage = "https://moncho.github.io/dry/"; 24 changelog = "https://github.com/moncho/dry/releases/tag/v${version}"; 25 license = lib.licenses.mit; 26 maintainers = [ lib.maintainers.dump_stack ]; 27 mainProgram = "dry"; 28 }; 29}