summary refs log tree commit diff
path: root/pkgs/development/libraries/agda/pretty
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2015-04-05 04:49:07 +0300
committerPeter Simons <simons@cryp.to>2015-04-06 21:24:33 +0200
commit25618c36703594589c4fc16fc3c1b655710257c7 (patch)
treefa95cfe74cd3a494c81c1f19362f3b084cd86347 /pkgs/development/libraries/agda/pretty
parent434f129c629f5d318608810dd63e99a7a0d98d3a (diff)
downloadnixlib-25618c36703594589c4fc16fc3c1b655710257c7.tar
nixlib-25618c36703594589c4fc16fc3c1b655710257c7.tar.gz
nixlib-25618c36703594589c4fc16fc3c1b655710257c7.tar.bz2
nixlib-25618c36703594589c4fc16fc3c1b655710257c7.tar.lz
nixlib-25618c36703594589c4fc16fc3c1b655710257c7.tar.xz
nixlib-25618c36703594589c4fc16fc3c1b655710257c7.tar.zst
nixlib-25618c36703594589c4fc16fc3c1b655710257c7.zip
agda: migrate to haskell-ng, update and cleanup
Resolves https://github.com/NixOS/nixpkgs/pull/7172.
Diffstat (limited to 'pkgs/development/libraries/agda/pretty')
-rw-r--r--pkgs/development/libraries/agda/pretty/contextfile26
-rw-r--r--pkgs/development/libraries/agda/pretty/default.nix4
2 files changed, 28 insertions, 2 deletions
diff --git a/pkgs/development/libraries/agda/pretty/contextfile b/pkgs/development/libraries/agda/pretty/contextfile
index 12079515f66f..2ea20153bbcc 100644
--- a/pkgs/development/libraries/agda/pretty/contextfile
+++ b/pkgs/development/libraries/agda/pretty/contextfile
@@ -1,6 +1,32 @@
 
 Context:
 
+[Updated the code in response to a change to Agda.
+Nils Anders Danielsson <nils.anders.danielsson@gmail.com>**20150319181428
+ Ignore-this: f83c3dccfe25a2a5b9d0437d1dce0ec0
+] 
+
+[Rolled back most of "Updated the code in response to changes to Agda".
+Nils Anders Danielsson <nils.anders.danielsson@gmail.com>**20150319101413
+ Ignore-this: 5a26cf9cf83d0d146cca0c15c857d20c
+ * One of the Agda changes has been reverted.
+] 
+
+[Updated the code in response to changes to Agda.
+Nils Anders Danielsson <nils.anders.danielsson@gmail.com>**20150217101656
+ Ignore-this: a12921aebbe0fb575ef391ba5789a391
+] 
+
+[Modified the copyright year range.
+Nils Anders Danielsson <nils.anders.danielsson@gmail.com>**20150213144338
+ Ignore-this: 1d1b22457dd6dadcb47f5d7f3eea062
+] 
+
+[Restored Grammar.Abstract and Grammar.Non-terminal.
+Nils Anders Danielsson <nils.anders.danielsson@gmail.com>**20130727225031
+ Ignore-this: ddccb15caa7a3c26e973997ffdb4eec1
+] 
+
 [Modified the copyright year range.
 Nils Anders Danielsson <nils.anders.danielsson@gmail.com>**20141128164015
  Ignore-this: b9c6dddc965738aa2a7670c4c18da67f
diff --git a/pkgs/development/libraries/agda/pretty/default.nix b/pkgs/development/libraries/agda/pretty/default.nix
index cab58b369780..6aaaa44b00f0 100644
--- a/pkgs/development/libraries/agda/pretty/default.nix
+++ b/pkgs/development/libraries/agda/pretty/default.nix
@@ -1,13 +1,13 @@
 { stdenv, agda, fetchdarcs, AgdaStdlib }:
 
 agda.mkDerivation (self: rec {
-  version = "2014-11-28";
+  version = "2015-03-19";
   name = "pretty-${version}";
 
   src = fetchdarcs {
     url = "http://www.cse.chalmers.se/~nad/repos/pretty/";
     context = ./contextfile;
-    sha256 = "1y896qqlfjqvpd09cp0x9nhr60ii21f5cibl0v73xl3z2d0wn0xa";
+    sha256 = "0zmwh9kln7ykpmkx1qhqz64qm2arq62b17vs5fswnxk7mqxsmrf0";
   };
 
   buildDepends = [ AgdaStdlib ];