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

31 lines
952 B
Nix
Raw Normal View History

2013-08-11 03:00:45 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "orc-0.4.28";
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 = "bfcd7c6563b05672386c4eedfc4c0d4a0a12b4b4775b74ec6deb88fc2bcd83ce";
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
'';
# https://bugzilla.gnome.org/show_bug.cgi?id=728129#c15
doCheck = stdenv.hostPlatform.system != "i686-linux"; # not sure about cross-compiling
meta = with stdenv.lib; {
2013-08-11 03:00:45 +00:00
description = "The Oil Runtime Compiler";
homepage = http://code.entropywave.com/orc/;
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.
license = licenses.bsd3;
platforms = platforms.unix;
maintainers = [ maintainers.fuuzetsu ];
2013-08-11 03:00:45 +00:00
};
}