1451a52a38
I haven't been doing any maintenance for a long time now and not only do I get notified, it also creates a fake impression that all these packages had at least one maintainer when in practice they had none.
27 lines
800 B
Nix
27 lines
800 B
Nix
{ stdenv, agda, fetchdarcs, AgdaStdlib }:
|
|
|
|
agda.mkDerivation (self: rec {
|
|
version = "2015-03-19";
|
|
name = "pretty-${version}";
|
|
|
|
src = fetchdarcs {
|
|
url = "http://www.cse.chalmers.se/~nad/repos/pretty/";
|
|
context = ./contextfile;
|
|
sha256 = "0zmwh9kln7ykpmkx1qhqz64qm2arq62b17vs5fswnxk7mqxsmrf0";
|
|
};
|
|
|
|
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; [ ];
|
|
broken = true; # 2018-04-11
|
|
};
|
|
})
|