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

21 lines
638 B
Nix
Raw Normal View History

2013-08-11 04:00:45 +01:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2013-12-20 15:50:19 +00:00
name = "orc-0.4.18";
2013-08-11 04:00:45 +01:00
src = fetchurl {
url = "http://code.entropywave.com/download/orc/${name}.tar.gz";
2013-12-20 15:50:19 +00:00
sha256 = "093a7a495bsy3j6i4wxaxqbqxk6hwg2hdhgvvkabwhlz4nkwilrl";
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;
maintainers = [ stdenv.lib.maintainers.iyzsong ];
2013-08-11 04:00:45 +01:00
};
}