mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Adding Pure programming language
svn path=/nixpkgs/trunk/; revision=26749
This commit is contained in:
parent
2b61f3f4e5
commit
0aff57f299
2 changed files with 52 additions and 0 deletions
50
pkgs/development/interpreters/pure/default.nix
Normal file
50
pkgs/development/interpreters/pure/default.nix
Normal file
|
@ -0,0 +1,50 @@
|
|||
x@{builderDefsPackage
|
||||
, llvm, gmp, mpfr
|
||||
, ...}:
|
||||
builderDefsPackage
|
||||
(a :
|
||||
let
|
||||
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
|
||||
[];
|
||||
|
||||
buildInputs = map (n: builtins.getAttr n x)
|
||||
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
|
||||
sourceInfo = rec {
|
||||
baseName="pure";
|
||||
project="pure-lang";
|
||||
version="0.47";
|
||||
name="${baseName}-${version}";
|
||||
extension="tar.gz";
|
||||
url="http://${project}.googlecode.com/files/${name}.${extension}";
|
||||
hash="16j0k639kw2am4fc2h7q5sk7kx5z7nca896dakhphlb9zn9h0gbv";
|
||||
};
|
||||
in
|
||||
rec {
|
||||
src = a.fetchurl {
|
||||
url = sourceInfo.url;
|
||||
sha256 = sourceInfo.hash;
|
||||
};
|
||||
|
||||
inherit (sourceInfo) name version;
|
||||
inherit buildInputs;
|
||||
|
||||
/* doConfigure should be removed if not needed */
|
||||
phaseNames = ["doConfigure" "doMakeInstall"];
|
||||
|
||||
meta = {
|
||||
description = "A purely functional programming language based on term rewriting";
|
||||
maintainers = with a.lib.maintainers;
|
||||
[
|
||||
raskin
|
||||
];
|
||||
platforms = with a.lib.platforms;
|
||||
linux;
|
||||
license = a.lib.licenses.gpl3Plus;
|
||||
};
|
||||
passthru = {
|
||||
updateInfo = {
|
||||
downloadPage = "http://code.google.com/p/pure-lang/downloads/list";
|
||||
};
|
||||
};
|
||||
}) x
|
||||
|
|
@ -2375,6 +2375,8 @@ let
|
|||
|
||||
polyml = callPackage ../development/compilers/polyml { };
|
||||
|
||||
pure = callPackage ../development/interpreters/pure {};
|
||||
|
||||
python = python27;
|
||||
|
||||
python26 = callPackage ../development/interpreters/python/2.6 { };
|
||||
|
|
Loading…
Reference in a new issue