21 lines
638 B
Nix
21 lines
638 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "orc-0.4.18";
|
|
|
|
src = fetchurl {
|
|
url = "http://code.entropywave.com/download/orc/${name}.tar.gz";
|
|
sha256 = "093a7a495bsy3j6i4wxaxqbqxk6hwg2hdhgvvkabwhlz4nkwilrl";
|
|
};
|
|
|
|
meta = {
|
|
description = "The Oil Runtime Compiler";
|
|
homepage = "http://code.entropywave.com/orc/";
|
|
# The source code implementing the Marsenne Twister algorithm is licensed
|
|
# under the 3-clause BSD license. The rest is 2-clause BSD license.
|
|
license = stdenv.lib.licenses.bsd3;
|
|
platform = stdenv.lib.platforms.linux;
|
|
maintainers = [ stdenv.lib.maintainers.iyzsong ];
|
|
};
|
|
}
|