Skip to content

Commit

Permalink
schroedinger: add Darwin patch
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewbauer committed Apr 24, 2018
1 parent 9c406d2 commit 00bf115
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions pkgs/development/libraries/schroedinger/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, orc, pkgconfig }:
{ stdenv, fetchurl, orc, pkgconfig, fetchpatch, autoreconfHook }:

stdenv.mkDerivation {
name = "schroedinger-1.0.11";
Expand All @@ -13,15 +13,23 @@ stdenv.mkDerivation {

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

nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ pkgconfig autoreconfHook ];
buildInputs = [ orc ];

doCheck = true;
doCheck = (!stdenv.isDarwin);

patchFlags = "-p0";
patches = [
(fetchpatch {
url = "https://raw.githubusercontent.com/macports/macports-ports/master/multimedia/schroedinger/files/patch-testsuite-Makefile.am.diff";
sha256 = "0cc8ymvgjgwy7ghca2dd8m8pxpinf27s2i8krf2m3fzv2ckq09v3";
})
];

meta = with stdenv.lib; {
homepage = http://diracvideo.org/;
maintainers = [ maintainers.spwhitt ];
license = [ licenses.mpl11 licenses.lgpl2 licenses.mit ];
platforms = platforms.linux;
platforms = platforms.unix;
};
}

0 comments on commit 00bf115

Please sign in to comment.