nixpkgs/pkgs/development/libraries/schroedinger/default.nix

35 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, orc, pkg-config, fetchpatch, autoreconfHook }:
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
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";
};
outputs = [ "out" "dev" "devdoc" ];
2015-02-28 15:14:43 +00:00
nativeBuildInputs = [ pkg-config autoreconfHook ];
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
meta = with lib; {
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
};
}