Merge pull request #110764 from erictapen/poly2tri-c-repo
poly2tri-c: move away from untrusted repo to one that is owned by its Nixpkgs maintainer
This commit is contained in:
commit
db4cede416
|
@ -1,5 +1,5 @@
|
||||||
{ lib, stdenv
|
{ lib, stdenv
|
||||||
, fetchFromGitHub
|
, fetchFromGitLab
|
||||||
, autoreconfHook
|
, autoreconfHook
|
||||||
, pkg-config
|
, pkg-config
|
||||||
, glib
|
, glib
|
||||||
|
@ -11,9 +11,10 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
outputs = [ "bin" "out" "dev" ];
|
outputs = [ "bin" "out" "dev" ];
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitLab {
|
||||||
owner = "Mattey40";
|
domain = "gitlab.gnome.org";
|
||||||
repo = "poly2tri-c";
|
owner = "jtojnar";
|
||||||
|
repo = pname;
|
||||||
rev = "p2tc-${version}";
|
rev = "p2tc-${version}";
|
||||||
sha256 = "158vm3wqfxs22b74kqc4prlvjny38qqm3kz5wrgasmx0qciwh0g8";
|
sha256 = "158vm3wqfxs22b74kqc4prlvjny38qqm3kz5wrgasmx0qciwh0g8";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue