compile-daemon: init at 2013-03-08

+75
+25
pkgs/development/tools/compile-daemon/default.nix
··· 1 + { stdenv, buildGoPackage, fetchFromGitHub }: 2 + 3 + buildGoPackage 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; [ profpatsch ]; 23 + inherit (src.meta) homepage; 24 + }; 25 + }
+48
pkgs/development/tools/compile-daemon/deps.nix
··· 1 + # This file was generated by https://github.com/kamilchm/go2nix v1.2.0-devel 2 + [ 3 + { 4 + goPackagePath = "github.com/fatih/color"; 5 + fetch = { 6 + type = "git"; 7 + url = "https://github.com/fatih/color"; 8 + rev = "9131ab34cf20d2f6d83fdc67168a5430d1c7dc23"; 9 + sha256 = "111x6rhpxfjhwkjrmrirqqh6nc68q5g7air9fl5kgr3bg85hybr5"; 10 + }; 11 + } 12 + { 13 + goPackagePath = "github.com/mattn/go-colorable"; 14 + fetch = { 15 + type = "git"; 16 + url = "https://github.com/mattn/go-colorable"; 17 + rev = "a392f450ea64cee2b268dfaacdc2502b50a22b18"; 18 + sha256 = "1msiq5nb1sdhwfjv65hjnvr2s4pfsp8mv6f5z8aa8n9bjf0cksyc"; 19 + }; 20 + } 21 + { 22 + goPackagePath = "github.com/mattn/go-isatty"; 23 + fetch = { 24 + type = "git"; 25 + url = "https://github.com/mattn/go-isatty"; 26 + rev = "57fdcb988a5c543893cc61bce354a6e24ab70022"; 27 + sha256 = "1fkhmi3nhz6vasfvjzjjwxkbpwsb9hzc0g5h1rygqrnzjykl2r39"; 28 + }; 29 + } 30 + { 31 + goPackagePath = "golang.org/x/sys"; 32 + fetch = { 33 + type = "git"; 34 + url = "https://go.googlesource.com/sys"; 35 + rev = "99f16d856c9836c42d24e7ab64ea72916925fa97"; 36 + sha256 = "0g2x5krfhnraq03v0b48y3xv3ffg92pbgvps0npj9l7wq8q9hkmx"; 37 + }; 38 + } 39 + { 40 + goPackagePath = "gopkg.in/fsnotify.v1"; 41 + fetch = { 42 + type = "git"; 43 + url = "https://gopkg.in/fsnotify.v1"; 44 + rev = "629574ca2a5df945712d3079857300b5e4da0236"; 45 + sha256 = "06wfg1mmzjj04z7d0q1x2fai9k6hm957brngsaf02fa9a3qqanv3"; 46 + }; 47 + } 48 + ]
+2
pkgs/top-level/all-packages.nix
··· 6403 6403 6404 6404 coan = callPackage ../development/tools/analysis/coan { }; 6405 6405 6406 + compile-daemon = callPackage ../development/tools/compile-daemon { }; 6407 + 6406 6408 complexity = callPackage ../development/tools/misc/complexity { }; 6407 6409 6408 6410 cookiecutter = pythonPackages.cookiecutter;