mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
Added Agda-executable.
svn path=/nixpkgs/trunk/; revision=26737
This commit is contained in:
parent
36d95a3220
commit
1d4428fbdb
13
pkgs/development/compilers/Agda-executable/default.nix
Normal file
13
pkgs/development/compilers/Agda-executable/default.nix
Normal file
@ -0,0 +1,13 @@
|
||||
{cabal, Agda}:
|
||||
|
||||
cabal.mkDerivation (self : {
|
||||
pname = "Agda-executable";
|
||||
name = self.fname;
|
||||
version = "2.2.10";
|
||||
sha256 = "0jjlbz5vaz1pasfws1cy8wvllzdzv3sxm2lfj6bckl93kdrxlpy6";
|
||||
propagatedBuildInputs = [Agda];
|
||||
meta = {
|
||||
description = "Command-line program for type-checking and compiling Agda programs";
|
||||
maintainers = [self.stdenv.lib.maintainers.andres];
|
||||
};
|
||||
})
|
@ -1027,6 +1027,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||
|
||||
# Compilers.
|
||||
|
||||
AgdaExecutable = callPackage ../development/compilers/Agda-executable {};
|
||||
|
||||
ehc = callPackage ../development/compilers/ehc {
|
||||
inherit (pkgs) fetchsvn stdenv coreutils glibc m4 libtool llvm;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user