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: a80f4726c432
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c79d6d043077
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Feb 10, 2020

  1. Copy the full SHA
    c79d6d0 View commit details
Showing with 6 additions and 7 deletions.
  1. +6 −7 pkgs/applications/graphics/c3d/default.nix
13 changes: 6 additions & 7 deletions pkgs/applications/graphics/c3d/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{ stdenv, fetchgit, cmake, itk, Cocoa }:
{ stdenv, fetchgit, cmake, itk4, Cocoa }:

stdenv.mkDerivation {
pname = "c3d";
version = "2018-10-04";
version = "unstable-2019-10-22";

src = fetchgit {
url = "https://git.code.sf.net/p/c3d/git";
rev = "351929a582b2ef68fb9902df0b11d38f44a0ccd0";
sha256 = "0mpv4yl6hdnxgvnwrmd182h64n3ppp30ldzm0jz6jglk0nvpzq9w";
url = "https://github.com/pyushkevich/c3d";
rev = "c04e2b84568654665c64d8843378c8bbd58ba9b0";
sha256 = "0lzldxvshl9q362mg76byc7s5zc9qx7mxf2wgyij5vysx8mihx3q";
};

nativeBuildInputs = [ cmake ];
buildInputs = [ itk ]
buildInputs = [ itk4 ]
++ stdenv.lib.optional stdenv.isDarwin Cocoa;

meta = with stdenv.lib; {
@@ -20,6 +20,5 @@ stdenv.mkDerivation {
maintainers = with maintainers; [ bcdarwin ];
platforms = platforms.unix;
license = licenses.gpl2;
broken = true;
};
}