2015-10-06 19:45:49 +01:00
|
|
|
{ stdenv, fetchurl, orc, pkgconfig }:
|
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
|
|
|
|
http://download.videolan.org/contrib/schroedinger-1.0.11.tar.gz
|
|
|
|
];
|
2015-02-28 15:14:43 +00:00
|
|
|
sha256 = "04prr667l4sn4zx256v1z36a0nnkxfdqyln48rbwlamr6l3jlmqy";
|
2008-03-10 20:13:44 +00:00
|
|
|
};
|
|
|
|
|
2015-10-28 17:56:00 +00:00
|
|
|
outputs = [ "dev" "out" "docdev" ];
|
2015-02-28 15:14:43 +00:00
|
|
|
|
2015-10-06 19:45:49 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ orc ];
|
|
|
|
|
|
|
|
doCheck = true;
|
2015-02-28 15:14:43 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "http://diracvideo.org/";
|
|
|
|
maintainers = [ maintainers.spwhitt ];
|
|
|
|
license = [ licenses.mpl11 licenses.lgpl2 licenses.mit ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2008-03-10 20:13:44 +00:00
|
|
|
}
|