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

33 lines
1,005 B
Nix
Raw Normal View History

2013-08-11 03:00:45 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2016-09-10 09:32:05 +00:00
name = "orc-0.4.26";
2013-08-11 03:00:45 +00:00
src = fetchurl {
2014-08-21 12:10:22 +00:00
url = "http://gstreamer.freedesktop.org/src/orc/${name}.tar.xz";
2016-09-10 09:32:05 +00:00
sha256 = "0jd69ynvr3k70mlxxgbsk047l1rd63m1wkj3qdcq7644xy0gllkx";
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
'';
2014-09-22 10:30:07 +00:00
# building memcpy_speed.log
# ../test-driver: line 107: 4495 Segmentation fault "$@" > $log_file 2>&1
# FAIL: memcpy_speed
doCheck = false; # see https://bugzilla.gnome.org/show_bug.cgi?id=728129#c7
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
};
}