Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 33 lines 727 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6let 7 pname = "e1s"; 8 version = "1.0.49"; 9in 10buildGoModule { 11 inherit pname version; 12 13 src = fetchFromGitHub { 14 owner = "keidarcy"; 15 repo = "e1s"; 16 tag = "v${version}"; 17 hash = "sha256-7GHNhX0hiRHQ0OH1DuHG9SPcTmm8W5CLU1Idx1pJnwE="; 18 }; 19 20 vendorHash = "sha256-1lise/u40Q8W9STsuyrWIbhf2HY+SFCytUL1PTSWvfY="; 21 22 meta = { 23 description = "Easily Manage AWS ECS Resources in Terminal 🐱"; 24 homepage = "https://github.com/keidarcy/e1s"; 25 changelog = "https://github.com/keidarcy/e1s/releases/tag/v${version}"; 26 license = lib.licenses.mit; 27 mainProgram = "e1s"; 28 maintainers = with lib.maintainers; [ 29 zelkourban 30 carlossless 31 ]; 32 }; 33}