2018-04-24 21:16:12 +01:00
|
|
|
{ stdenv, fetchurl, orc, pkgconfig, fetchpatch, autoreconfHook }:
|
2008-03-10 20:13:44 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2015-02-28 15:14:43 +00:00
|
|
|
name = "schroedinger-1.0.11";
|
|
|
|
|
2008-03-10 20:13:44 +00:00
|
|
|
src = fetchurl {
|
2015-04-10 08:40:09 +01:00
|
|
|
urls = [
|
|
|
|
http://diracvideo.org/download/schroedinger/schroedinger-1.0.11.tar.gz
|
2018-06-28 19:43:35 +01:00
|
|
|
https://download.videolan.org/contrib/schroedinger-1.0.11.tar.gz
|
2015-04-10 08:40:09 +01:00
|
|
|
];
|
2015-02-28 15:14:43 +00:00
|
|
|
sha256 = "04prr667l4sn4zx256v1z36a0nnkxfdqyln48rbwlamr6l3jlmqy";
|
2008-03-10 20:13:44 +00:00
|
|
|
};
|
|
|
|
|
2016-09-01 10:07:23 +01:00
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
2015-02-28 15:14:43 +00:00
|
|
|
|
2018-04-24 21:16:12 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
2015-10-06 19:45:49 +01:00
|
|
|
buildInputs = [ orc ];
|
|
|
|
|
2018-04-24 21:16:12 +01:00
|
|
|
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";
|
|
|
|
})
|
|
|
|
];
|
2015-02-28 15:14:43 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://diracvideo.org/;
|
2015-02-28 15:14:43 +00:00
|
|
|
maintainers = [ maintainers.spwhitt ];
|
|
|
|
license = [ licenses.mpl11 licenses.lgpl2 licenses.mit ];
|
2018-04-24 21:16:12 +01:00
|
|
|
platforms = platforms.unix;
|
2015-02-28 15:14:43 +00:00
|
|
|
};
|
2008-03-10 20:13:44 +00:00
|
|
|
}
|