2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, orc, pkg-config, fetchpatch, autoreconfHook }:
|
2008-03-10 20:13:44 +00:00
|
|
|
|
2021-06-20 14:15:21 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "schroedinger";
|
|
|
|
version = "1.0.11";
|
2015-02-28 15:14:43 +00:00
|
|
|
|
2008-03-10 20:13:44 +00:00
|
|
|
src = fetchurl {
|
2021-06-20 14:15:21 +00:00
|
|
|
url = "https://download.videolan.org/contrib/${pname}-${version}.tar.gz";
|
2015-02-28 15:14:43 +00:00
|
|
|
sha256 = "04prr667l4sn4zx256v1z36a0nnkxfdqyln48rbwlamr6l3jlmqy";
|
2008-03-10 20:13:44 +00:00
|
|
|
};
|
|
|
|
|
2016-09-01 09:07:23 +00:00
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
2015-02-28 15:14:43 +00:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
2015-10-06 18:45:49 +00:00
|
|
|
buildInputs = [ orc ];
|
|
|
|
|
2018-04-24 20:16:12 +00:00
|
|
|
doCheck = (!stdenv.isDarwin);
|
|
|
|
|
2019-10-26 15:39:27 +00:00
|
|
|
patchFlags = [ "-p0" ];
|
2018-04-24 20:16:12 +00:00
|
|
|
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
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2019-11-17 08:43:55 +00:00
|
|
|
description = "An implementation of the Dirac video codec in ANSI C";
|
|
|
|
homepage = "https://sourceforge.net/projects/schrodinger/";
|
2015-02-28 15:14:43 +00:00
|
|
|
maintainers = [ maintainers.spwhitt ];
|
|
|
|
license = [ licenses.mpl11 licenses.lgpl2 licenses.mit ];
|
2018-04-24 20:16:12 +00:00
|
|
|
platforms = platforms.unix;
|
2015-02-28 15:14:43 +00:00
|
|
|
};
|
2008-03-10 20:13:44 +00:00
|
|
|
}
|