nixpkgs/pkgs/development/libraries/schroedinger/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

36 lines
1 KiB
Nix

{ stdenv, fetchurl, orc, pkgconfig, fetchpatch, autoreconfHook }:
stdenv.mkDerivation {
name = "schroedinger-1.0.11";
src = fetchurl {
urls = [
http://diracvideo.org/download/schroedinger/schroedinger-1.0.11.tar.gz
https://download.videolan.org/contrib/schroedinger-1.0.11.tar.gz
];
sha256 = "04prr667l4sn4zx256v1z36a0nnkxfdqyln48rbwlamr6l3jlmqy";
};
outputs = [ "out" "dev" "devdoc" ];
nativeBuildInputs = [ pkgconfig autoreconfHook ];
buildInputs = [ orc ];
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; {
homepage = http://diracvideo.org/;
maintainers = [ maintainers.spwhitt ];
license = [ licenses.mpl11 licenses.lgpl2 licenses.mit ];
platforms = platforms.unix;
};
}