schroedinger: add Darwin patch

This commit is contained in:
Matthew Bauer 2018-04-24 15:16:12 -05:00
parent 9c406d2ac8
commit 00bf115047

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, orc, pkgconfig }: { stdenv, fetchurl, orc, pkgconfig, fetchpatch, autoreconfHook }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "schroedinger-1.0.11"; name = "schroedinger-1.0.11";
@ -13,15 +13,23 @@ stdenv.mkDerivation {
outputs = [ "out" "dev" "devdoc" ]; outputs = [ "out" "dev" "devdoc" ];
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig autoreconfHook ];
buildInputs = [ orc ]; 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; { meta = with stdenv.lib; {
homepage = http://diracvideo.org/; homepage = http://diracvideo.org/;
maintainers = [ maintainers.spwhitt ]; maintainers = [ maintainers.spwhitt ];
license = [ licenses.mpl11 licenses.lgpl2 licenses.mit ]; license = [ licenses.mpl11 licenses.lgpl2 licenses.mit ];
platforms = platforms.linux; platforms = platforms.unix;
}; };
} }