Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8708b6d871ac
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: db4cede4160f
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 25, 2021

  1. Copy the full SHA
    b193bc7 View commit details
  2. 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
    jtojnar authored Jan 25, 2021
    Copy the full SHA
    db4cede View commit details
Showing with 5 additions and 4 deletions.
  1. +5 −4 pkgs/development/libraries/poly2tri-c/default.nix
9 changes: 5 additions & 4 deletions pkgs/development/libraries/poly2tri-c/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ lib, stdenv
, fetchFromGitHub
, fetchFromGitLab
, autoreconfHook
, pkg-config
, glib
@@ -11,9 +11,10 @@ stdenv.mkDerivation rec {

outputs = [ "bin" "out" "dev" ];

src = fetchFromGitHub {
owner = "Mattey40";
repo = "poly2tri-c";
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "jtojnar";
repo = pname;
rev = "p2tc-${version}";
sha256 = "158vm3wqfxs22b74kqc4prlvjny38qqm3kz5wrgasmx0qciwh0g8";
};