nixpkgs/pkgs/development/compilers/orc/default.nix

32 lines
1 KiB
Nix
Raw Normal View History

2013-08-11 03:00:45 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "orc-0.4.29";
2013-08-11 03:00:45 +00:00
src = fetchurl {
2017-09-16 19:28:31 +00:00
url = "https://gstreamer.freedesktop.org/src/orc/${name}.tar.xz";
sha256 = "1cisbbn69p9c8vikn0nin14q0zscby5m8cyvzxyw2pjb2kwh32ag";
2013-08-11 03:00:45 +00:00
};
outputs = [ "out" "dev" ];
outputBin = "dev"; # compilation tools
2015-10-06 11:10:31 +00:00
postInstall = ''
sed "/^toolsdir=/ctoolsdir=$dev/bin" -i "$dev"/lib/pkgconfig/orc*.pc
'';
# i686 https://gitlab.freedesktop.org/gstreamer/orc/issues/18
# armv7l https://gitlab.freedesktop.org/gstreamer/orc/issues/9
doCheck = (!stdenv.hostPlatform.isi686 && !stdenv.hostPlatform.isAarch32);
meta = with stdenv.lib; {
2013-08-11 03:00:45 +00:00
description = "The Oil Runtime Compiler";
2018-09-01 23:07:45 +00:00
homepage = https://gstreamer.freedesktop.org/projects/orc.html;
2013-08-11 12:50:55 +00:00
# The source code implementing the Marsenne Twister algorithm is licensed
# under the 3-clause BSD license. The rest is 2-clause BSD license.
2018-09-01 23:07:45 +00:00
license = with licenses; [ bsd3 bsd2 ];
platforms = platforms.unix;
maintainers = [ maintainers.fuuzetsu ];
2013-08-11 03:00:45 +00:00
};
}