agda-pretty: new package
This commit is contained in:
parent
4ed56b013f
commit
d409ae809a
7
pkgs/development/libraries/agda/pretty/contextfile
Normal file
7
pkgs/development/libraries/agda/pretty/contextfile
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
|
||||||
|
Context:
|
||||||
|
|
||||||
|
[TAG Correct-by-Construction Pretty-Printing (2013-06-14)
|
||||||
|
Nils Anders Danielsson <nils.anders.danielsson@gmail.com>**20130614153155
|
||||||
|
Ignore-this: a64ae32de9e22d60d64ef3da19847e00
|
||||||
|
]
|
25
pkgs/development/libraries/agda/pretty/default.nix
Normal file
25
pkgs/development/libraries/agda/pretty/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ stdenv, agda, fetchdarcs, AgdaStdlib }:
|
||||||
|
|
||||||
|
agda.mkDerivation (self: rec {
|
||||||
|
version = "2014-09-27";
|
||||||
|
name = "pretty-${version}";
|
||||||
|
|
||||||
|
src = fetchdarcs {
|
||||||
|
url = "http://www.cse.chalmers.se/~nad/repos/pretty/";
|
||||||
|
context = ./contextfile;
|
||||||
|
sha256 = "067pv55r3wlchbgjpx3ha5hyzr29y6xsix0ywwgirm8njcc8nv16";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildDepends = [ AgdaStdlib ];
|
||||||
|
everythingFile = "Pretty.agda";
|
||||||
|
sourceDirectories = [];
|
||||||
|
topSourceDirectories = [ "../$sourceRoot" ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "http://www.cse.chalmers.se/~nad/publications/danielsson-correct-pretty.html";
|
||||||
|
description = "Correct-by-Construction Pretty-Printing";
|
||||||
|
license = stdenv.lib.licenses.mit;
|
||||||
|
platforms = stdenv.lib.platforms.unix;
|
||||||
|
maintainers = with maintainers; [ fuuzetsu ];
|
||||||
|
};
|
||||||
|
})
|
@ -6801,6 +6801,8 @@ let
|
|||||||
|
|
||||||
categories = callPackage ../development/libraries/agda/categories {};
|
categories = callPackage ../development/libraries/agda/categories {};
|
||||||
|
|
||||||
|
pretty = callPackage ../development/libraries/agda/pretty {};
|
||||||
|
|
||||||
TotalParserCombinators = callPackage ../development/libraries/agda/TotalParserCombinators {};
|
TotalParserCombinators = callPackage ../development/libraries/agda/TotalParserCombinators {};
|
||||||
|
|
||||||
### DEVELOPMENT / LIBRARIES / JAVA
|
### DEVELOPMENT / LIBRARIES / JAVA
|
||||||
|
Loading…
Reference in New Issue
Block a user