tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
packr: mark broken on darwin
Theodore Ni
3 years ago
16e3fbb7
a2cf0add
+18
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
packr
default.nix
+18
-2
pkgs/development/libraries/packr/default.nix
···
1
-
{ buildGoModule
0
2
, fetchFromGitHub
3
, lib
4
-
5
, symlinkJoin
6
}:
7
···
27
homepage = "https://github.com/gobuffalo/packr";
28
license = licenses.mit;
29
maintainers = with maintainers; [ mmahut ];
0
0
0
0
0
0
0
0
30
};
31
};
32
p1 = buildGoModule rec {
···
51
homepage = "https://github.com/gobuffalo/packr";
52
license = licenses.mit;
53
maintainers = with maintainers; [ mmahut ];
0
0
0
0
0
0
0
0
54
};
55
};
56
in
···
1
+
{ stdenv
2
+
, buildGoModule
3
, fetchFromGitHub
4
, lib
0
5
, symlinkJoin
6
}:
7
···
27
homepage = "https://github.com/gobuffalo/packr";
28
license = licenses.mit;
29
maintainers = with maintainers; [ mmahut ];
30
+
31
+
# golang.org/x/sys needs to be updated due to:
32
+
#
33
+
# https://github.com/golang/go/issues/49219
34
+
#
35
+
# but this package is no longer maintained.
36
+
#
37
+
broken = stdenv.isDarwin;
38
};
39
};
40
p1 = buildGoModule rec {
···
59
homepage = "https://github.com/gobuffalo/packr";
60
license = licenses.mit;
61
maintainers = with maintainers; [ mmahut ];
62
+
63
+
# golang.org/x/sys needs to be updated due to:
64
+
#
65
+
# https://github.com/golang/go/issues/49219
66
+
#
67
+
# but this package is no longer maintained.
68
+
#
69
+
broken = stdenv.isDarwin;
70
};
71
};
72
in