tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
spicy: unstable-2020-02-21 -> 0.6.2
Aaron Jheng
3 years ago
4f7f85c1
0f3ea348
+9
-65
2 changed files
expand all
collapse all
unified
split
pkgs
development
tools
spicy
default.nix
deps.nix
+9
-9
pkgs/development/tools/spicy/default.nix
···
1
1
-
{ lib, buildGoPackage, fetchFromGitHub }:
1
1
+
{ lib, buildGoModule, fetchFromGitHub }:
2
2
3
3
-
buildGoPackage rec {
3
3
+
buildGoModule rec {
4
4
pname = "spicy";
5
5
-
version = "unstable-2020-02-21";
6
6
-
7
7
-
goPackagePath = "github.com/trhodeos/spicy";
5
5
+
version = "0.6.2";
8
6
9
7
src = fetchFromGitHub {
10
8
owner = "trhodeos";
11
9
repo = "spicy";
12
12
-
rev = "47409fb73e0b20b323c46cc06a3858d0a252a817";
13
13
-
sha256 = "022r8klmr21vaz5qd72ndrzj7pyqpfxc3jljz7nzsa50fjf82c3a";
10
10
+
rev = "v${version}";
11
11
+
sha256 = "sha256-TodMm4UbnLB+LiyfPVXT7bcVLbyBFbGoOYQSsz3IMfM=";
14
12
};
15
13
16
16
-
goDeps = ./deps.nix;
14
14
+
vendorSha256 = "sha256-uy33vfsvyLCep1aN8qO0BMmpPylhzTLhosjjD5ghmHE=";
15
15
+
16
16
+
ldflags = [ "-s" "-w" ];
17
17
18
18
meta = with lib; {
19
19
description = "A Nintendo 64 segment assembler";
···
23
23
'';
24
24
homepage = "https://github.com/trhodeos/spicy";
25
25
license = licenses.mit;
26
26
-
maintainers = [ maintainers._414owen];
26
26
+
maintainers = with maintainers; [ _414owen ];
27
27
};
28
28
}
-56
pkgs/development/tools/spicy/deps.nix
···
1
1
-
[
2
2
-
{
3
3
-
goPackagePath = "github.com/alecthomas/participle";
4
4
-
fetch = {
5
5
-
type = "git";
6
6
-
url = "https://github.com/alecthomas/participle.git";
7
7
-
rev = "fed0e8fbb638b11091014aa838748210dc9ff576";
8
8
-
sha256 = "0yhhm42lis8ak9m6x6aai280xq0652vcq5v17pibbf74dalxyims";
9
9
-
};
10
10
-
}
11
11
-
{
12
12
-
goPackagePath = "github.com/sirupsen/logrus";
13
13
-
fetch = {
14
14
-
type = "git";
15
15
-
url = "https://github.com/sirupsen/logrus.git";
16
16
-
rev = "f104497f2b2129ab888fd274891f3a278756bcde";
17
17
-
sha256 = "0gr2c7s3ffdaynzn1zplp79zz16qgqpnsq2z9zg79wxksq5mz5l1";
18
18
-
};
19
19
-
}
20
20
-
{
21
21
-
goPackagePath = "github.com/ogier/pflag";
22
22
-
fetch = {
23
23
-
type = "git";
24
24
-
url = "https://github.com/ogier/pflag.git";
25
25
-
rev = "73e519546fc0bce0c395610afcf6aa4e5aec88eb";
26
26
-
sha256 = "114zpgl6l47gsz0sifpq62hi2i6k0ra9hi8wx7d39giablf9i4ii";
27
27
-
};
28
28
-
}
29
29
-
{
30
30
-
goPackagePath = "github.com/trhodeos/n64rom";
31
31
-
fetch = {
32
32
-
type = "git";
33
33
-
url = "https://github.com/trhodeos/n64rom.git";
34
34
-
rev = "504dba7b4d4675bd3396c052d64016c5725c2f5e";
35
35
-
sha256 = "01hybm8nxh1lym0wc9sxrms3wyqhhs0dm1a2nwz6xc60lkjcp8kb";
36
36
-
};
37
37
-
}
38
38
-
{
39
39
-
goPackagePath = "github.com/trhodeos/ecoff";
40
40
-
fetch = {
41
41
-
type = "git";
42
42
-
url = "https://github.com/trhodeos/ecoff.git";
43
43
-
rev = "e54570a0fac23c0fa7f605681345611f345ce0f6";
44
44
-
sha256 = "0pc0yj7hy43m00br0q0f1y5a3bc3a134imcyy2jvzim45g6g12kj";
45
45
-
};
46
46
-
}
47
47
-
{
48
48
-
goPackagePath = "golang.org/x/sys";
49
49
-
fetch = {
50
50
-
type = "git";
51
51
-
url = "https://github.com/golang/sys";
52
52
-
rev = "9a76102bfb4322425a1228caa377974426e82c84";
53
53
-
sha256 = "07qn19yla2w604p3dc8h1c75xj2pxc4fajvg0mf0d4c72d5qiss4";
54
54
-
};
55
55
-
}
56
56
-
]