0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00
nixpkgs/pkgs/development/compilers/orc/default.nix

21 lines
638 B
Nix
Raw Normal View History

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