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

21 lines
637 B
Nix
Raw Normal View History

2013-08-11 03:00:45 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "orc-0.4.17";
src = fetchurl {
url = "http://code.entropywave.com/download/orc/${name}.tar.gz";
sha256 = "1s6psp8phrd1jmxz9j01cksh3q5xrm1bd3z7zqxg5zsrijjcrisg";
};
meta = {
description = "The Oil Runtime Compiler";
homepage = "http://code.entropywave.com/orc/";
2013-08-11 12:50:55 +00: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 04:07:57 +00:00
license = stdenv.lib.license.bsd3;
2013-08-11 03:00:45 +00:00
platform = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.iyzsong ];
2013-08-11 03:00:45 +00:00
};
}