3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/compilers/orc/default.nix

22 lines
603 B
Nix
Raw Normal View History

2013-08-11 04:00:45 +01:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "orc-0.4.19";
2013-08-11 04:00:45 +01:00
src = fetchurl {
url = "http://gstreamer.freedesktop.org/src/orc/${name}.tar.gz";
sha256 = "17mmgwll2waz44m908lcxc5fd6n44yysh7p4pdw33hr138r507z2";
2013-08-11 04:00:45 +01:00
};
doCheck = true;
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;
};
}