2013-08-11 04:00:45 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-08-21 13:10:22 +01:00
|
|
|
name = "orc-0.4.21";
|
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";
|
|
|
|
sha256 = "187wrnq0ficwjj4y3yqci5fxcdkiazfs6k5js26k5b26hipzmham";
|
2013-08-11 04:00:45 +01:00
|
|
|
};
|
|
|
|
|
2014-08-23 10:41:41 +01:00
|
|
|
doCheck = stdenv.is64bit; # 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;
|
2013-08-11 04:00:45 +01:00
|
|
|
platform = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|