at 18.09-beta 25 lines 640 B view raw
1{ stdenv, buildGoPackage, fetchFromGitHub }: 2 3buildGoPackage rec { 4 name = "compile-daemon-unstable-${version}"; 5 version = "2017-03-08"; 6 rev = "d447e567232bcb84cedd3b2be012c7127f31f469"; 7 8 goPackagePath = "github.com/githubnemo/CompileDaemon"; 9 10 src = fetchFromGitHub { 11 owner = "githubnemo"; 12 repo = "CompileDaemon"; 13 inherit rev; 14 sha256 = "0jfbipp3gd89n6d7gds1qvfkqvz80qdlqqhijxffh8z8ss0xinqc"; 15 }; 16 17 goDeps = ./deps.nix; 18 19 meta = with stdenv.lib; { 20 description = "Very simple compile daemon for Go"; 21 license = licenses.bsd2; 22 maintainers = with maintainers; [ ]; 23 inherit (src.meta) homepage; 24 }; 25}