tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
compile-daemon: init at 2013-03-08
Profpatsch
9 years ago
048114eb
9b7b9508
+75
3 changed files
expand all
collapse all
unified
split
pkgs
development
tools
compile-daemon
default.nix
deps.nix
top-level
all-packages.nix
+25
pkgs/development/tools/compile-daemon/default.nix
···
1
1
+
{ stdenv, buildGoPackage, fetchFromGitHub }:
2
2
+
3
3
+
buildGoPackage rec {
4
4
+
name = "compile-daemon-unstable-${version}";
5
5
+
version = "2017-03-08";
6
6
+
rev = "d447e567232bcb84cedd3b2be012c7127f31f469";
7
7
+
8
8
+
goPackagePath = "github.com/githubnemo/CompileDaemon";
9
9
+
10
10
+
src = fetchFromGitHub {
11
11
+
owner = "githubnemo";
12
12
+
repo = "CompileDaemon";
13
13
+
inherit rev;
14
14
+
sha256 = "0jfbipp3gd89n6d7gds1qvfkqvz80qdlqqhijxffh8z8ss0xinqc";
15
15
+
};
16
16
+
17
17
+
goDeps = ./deps.nix;
18
18
+
19
19
+
meta = with stdenv.lib; {
20
20
+
description = "Very simple compile daemon for Go";
21
21
+
license = licenses.bsd2;
22
22
+
maintainers = with maintainers; [ profpatsch ];
23
23
+
inherit (src.meta) homepage;
24
24
+
};
25
25
+
}
+48
pkgs/development/tools/compile-daemon/deps.nix
···
1
1
+
# This file was generated by https://github.com/kamilchm/go2nix v1.2.0-devel
2
2
+
[
3
3
+
{
4
4
+
goPackagePath = "github.com/fatih/color";
5
5
+
fetch = {
6
6
+
type = "git";
7
7
+
url = "https://github.com/fatih/color";
8
8
+
rev = "9131ab34cf20d2f6d83fdc67168a5430d1c7dc23";
9
9
+
sha256 = "111x6rhpxfjhwkjrmrirqqh6nc68q5g7air9fl5kgr3bg85hybr5";
10
10
+
};
11
11
+
}
12
12
+
{
13
13
+
goPackagePath = "github.com/mattn/go-colorable";
14
14
+
fetch = {
15
15
+
type = "git";
16
16
+
url = "https://github.com/mattn/go-colorable";
17
17
+
rev = "a392f450ea64cee2b268dfaacdc2502b50a22b18";
18
18
+
sha256 = "1msiq5nb1sdhwfjv65hjnvr2s4pfsp8mv6f5z8aa8n9bjf0cksyc";
19
19
+
};
20
20
+
}
21
21
+
{
22
22
+
goPackagePath = "github.com/mattn/go-isatty";
23
23
+
fetch = {
24
24
+
type = "git";
25
25
+
url = "https://github.com/mattn/go-isatty";
26
26
+
rev = "57fdcb988a5c543893cc61bce354a6e24ab70022";
27
27
+
sha256 = "1fkhmi3nhz6vasfvjzjjwxkbpwsb9hzc0g5h1rygqrnzjykl2r39";
28
28
+
};
29
29
+
}
30
30
+
{
31
31
+
goPackagePath = "golang.org/x/sys";
32
32
+
fetch = {
33
33
+
type = "git";
34
34
+
url = "https://go.googlesource.com/sys";
35
35
+
rev = "99f16d856c9836c42d24e7ab64ea72916925fa97";
36
36
+
sha256 = "0g2x5krfhnraq03v0b48y3xv3ffg92pbgvps0npj9l7wq8q9hkmx";
37
37
+
};
38
38
+
}
39
39
+
{
40
40
+
goPackagePath = "gopkg.in/fsnotify.v1";
41
41
+
fetch = {
42
42
+
type = "git";
43
43
+
url = "https://gopkg.in/fsnotify.v1";
44
44
+
rev = "629574ca2a5df945712d3079857300b5e4da0236";
45
45
+
sha256 = "06wfg1mmzjj04z7d0q1x2fai9k6hm957brngsaf02fa9a3qqanv3";
46
46
+
};
47
47
+
}
48
48
+
]
+2
pkgs/top-level/all-packages.nix
···
6403
6403
6404
6404
coan = callPackage ../development/tools/analysis/coan { };
6405
6405
6406
6406
+
compile-daemon = callPackage ../development/tools/compile-daemon { };
6407
6407
+
6406
6408
complexity = callPackage ../development/tools/misc/complexity { };
6407
6409
6408
6410
cookiecutter = pythonPackages.cookiecutter;