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

26 lines
859 B
Nix
Raw Normal View History

2013-08-11 05:00:45 +02:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2014-09-21 20:06:14 +02:00
name = "orc-0.4.22";
2013-08-11 05:00:45 +02:00
src = fetchurl {
2014-08-21 14:10:22 +02:00
url = "http://gstreamer.freedesktop.org/src/orc/${name}.tar.xz";
2014-09-21 20:06:14 +02:00
sha256 = "0dgrbjm94y9l63s3srlddjcdxgrv6iazmvwh630jrw159dzhgjh4";
2013-08-11 05:00:45 +02:00
};
2014-09-22 12:30:07 +02: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 05:00:45 +02:00
meta = {
description = "The Oil Runtime Compiler";
homepage = "http://code.entropywave.com/orc/";
2013-08-11 14:50:55 +02: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 17:12:12 +02:00
license = stdenv.lib.licenses.bsd3;
2013-08-11 05:00:45 +02:00
platform = stdenv.lib.platforms.linux;
2014-09-21 20:06:14 +02:00
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
2013-08-11 05:00:45 +02:00
};
}