Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 29 lines 697 B view raw
1{ buildGoPackage 2, lib 3, fetchFromGitHub 4}: 5 6buildGoPackage rec { 7 pname = "impl-unstable"; 8 version = "2019-11-19"; 9 rev = "6b9658ad00c7fbd61a7b50c195754413f6c4142c"; 10 11 goPackagePath = "github.com/josharian/impl"; 12 13 src = fetchFromGitHub { 14 inherit rev; 15 owner = "josharian"; 16 repo = "impl"; 17 sha256 = "1d4fvj7fgiykznx1z4fmcc06x5hsqp9wn62m5qm1ds8m0rjqaxwi"; 18 }; 19 20 goDeps = ./deps.nix; 21 22 meta = with lib; { 23 description = "impl generates method stubs for implementing an interface."; 24 homepage = "https://github.com/josharian/impl"; 25 license = licenses.mit; 26 maintainers = with maintainers; [ kalbasit ]; 27 platforms = platforms.linux ++ platforms.darwin; 28 }; 29}