Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 24 lines 552 B view raw
1{ lib, buildGoPackage, fetchFromGitHub }: 2 3buildGoPackage rec { 4 pname = "gdm"; 5 version = "1.4"; 6 7 goPackagePath = "github.com/sparrc/gdm"; 8 9 src = fetchFromGitHub { 10 owner = "sparrc"; 11 repo = "gdm"; 12 rev = version; 13 sha256 = "0kpqmbg144qcvd8k88j9yx9lrld85ray2viw161xajafk16plvld"; 14 }; 15 16 goDeps = ./deps.nix; 17 18 meta = with lib; { 19 description = "Minimalist dependency manager for Go written in Go"; 20 homepage = "https://github.com/sparrc/gdm"; 21 license = licenses.unlicense; 22 maintainers = [ maintainers.mic92 ]; 23 }; 24}