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

22 lines
672 B
Nix
Raw Normal View History

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
};
doCheck = stdenv.is64bit; # see https://bugzilla.gnome.org/show_bug.cgi?id=728129#c7
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;
};
}