poly2tri-c: move away from untrusted repo to one that is owned by its Nixpkgs maintainer

See also:
https://gitlab.gnome.org/GNOME/gegl/-/issues/214#note_1002908
https://github.com/NixOS/nixpkgs/pull/109812

+5 -4
+5 -4
pkgs/development/libraries/poly2tri-c/default.nix
··· 1 1 { lib, stdenv 2 - , fetchFromGitHub 2 + , fetchFromGitLab 3 3 , autoreconfHook 4 4 , pkg-config 5 5 , glib ··· 11 11 12 12 outputs = [ "bin" "out" "dev" ]; 13 13 14 - src = fetchFromGitHub { 15 - owner = "Mattey40"; 16 - repo = "poly2tri-c"; 14 + src = fetchFromGitLab { 15 + domain = "gitlab.gnome.org"; 16 + owner = "jtojnar"; 17 + repo = pname; 17 18 rev = "p2tc-${version}"; 18 19 sha256 = "158vm3wqfxs22b74kqc4prlvjny38qqm3kz5wrgasmx0qciwh0g8"; 19 20 };