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

28 lines
889 B
Nix
Raw Normal View History

2013-08-11 03:00:45 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "orc-0.4.23";
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";
sha256 = "1ryz1gfgrxcj806cakcblxf0bcwq8p2mw8k86fs3f5wlwayawzkn";
2013-08-11 03:00:45 +00:00
};
outputs = [ "out" "doc" ];
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
2013-08-11 03:00:45 +00:00
meta = {
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.
2013-08-11 15:12:12 +00:00
license = stdenv.lib.licenses.bsd3;
2015-03-26 02:12:16 +00:00
platforms = stdenv.lib.platforms.unix;
2014-09-21 18:06:14 +00:00
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
2013-08-11 03:00:45 +00:00
};
}