2013-08-11 04:00:45 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-01-03 20:28:03 +00:00
|
|
|
name = "orc-0.4.24";
|
2013-08-11 04:00:45 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-08-21 13:10:22 +01:00
|
|
|
url = "http://gstreamer.freedesktop.org/src/orc/${name}.tar.xz";
|
2016-01-03 20:28:03 +00:00
|
|
|
sha256 = "16ykgdrgxr6pfpy931p979cs68klvwmk3ii1k0a00wr4nn9x931k";
|
2013-08-11 04:00:45 +01:00
|
|
|
};
|
|
|
|
|
2015-07-26 12:43:49 +01:00
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
|
2014-09-22 11:30:07 +01: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
|
2014-04-19 11:14:20 +01:00
|
|
|
|
2013-08-11 04:00:45 +01:00
|
|
|
meta = {
|
|
|
|
description = "The Oil Runtime Compiler";
|
|
|
|
homepage = "http://code.entropywave.com/orc/";
|
2013-08-11 13:50:55 +01:00
|
|
|
# The source code implementing the Marsenne Twister algorithm is licensed
|
|
|
|
# under the 3-clause BSD license. The rest is 2-clause BSD license.
|
2013-08-11 16:12:12 +01:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2015-03-26 02:12:16 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2014-09-21 19:06:14 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
2013-08-11 04:00:45 +01:00
|
|
|
};
|
|
|
|
}
|