787f322540
... after auto-removing some kinds of files by default. In some cases I let them be removed and in others I let them be put into $docdev. That was more due to general indecisiveness on this question than any reasons in the particular cases.
28 lines
689 B
Nix
28 lines
689 B
Nix
{ stdenv, fetchurl, orc, pkgconfig }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "schroedinger-1.0.11";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
http://diracvideo.org/download/schroedinger/schroedinger-1.0.11.tar.gz
|
|
http://download.videolan.org/contrib/schroedinger-1.0.11.tar.gz
|
|
];
|
|
sha256 = "04prr667l4sn4zx256v1z36a0nnkxfdqyln48rbwlamr6l3jlmqy";
|
|
};
|
|
|
|
outputs = [ "dev" "out" "docdev" ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ orc ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://diracvideo.org/";
|
|
maintainers = [ maintainers.spwhitt ];
|
|
license = [ licenses.mpl11 licenses.lgpl2 licenses.mit ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|