1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "orc-0.4.23";
5
6 src = fetchurl {
7 url = "http://gstreamer.freedesktop.org/src/orc/${name}.tar.xz";
8 sha256 = "1ryz1gfgrxcj806cakcblxf0bcwq8p2mw8k86fs3f5wlwayawzkn";
9 };
10
11 outputs = [ "out" "doc" ];
12
13 # building memcpy_speed.log
14 # ../test-driver: line 107: 4495 Segmentation fault "$@" > $log_file 2>&1
15 # FAIL: memcpy_speed
16 doCheck = false; # see https://bugzilla.gnome.org/show_bug.cgi?id=728129#c7
17
18 meta = {
19 description = "The Oil Runtime Compiler";
20 homepage = "http://code.entropywave.com/orc/";
21 # The source code implementing the Marsenne Twister algorithm is licensed
22 # under the 3-clause BSD license. The rest is 2-clause BSD license.
23 license = stdenv.lib.licenses.bsd3;
24 platforms = stdenv.lib.platforms.unix;
25 maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
26 };
27}