agda-stdlib: 2.4.2.3 -> v0.12 (for Agda-2.5.1)

This commit is contained in:
laMudri 2016-05-21 16:05:08 +01:00
parent 68e1419cb8
commit 072ce88eb9

View file

@ -1,13 +1,12 @@
{ stdenv, agda, fetchgit, ghcWithPackages }:
{ stdenv, agda, fetchurl, ghcWithPackages }:
agda.mkDerivation (self: rec {
version = "2.4.2.3";
version = "v0.12";
name = "agda-stdlib-${version}";
src = fetchgit {
url = "git://github.com/agda/agda-stdlib";
rev = "9c9b3cb28f9a7d39a256890a1469c1a3f7fc4faf";
sha256 = "521899b820e70abbae7cb30008b87a2f8676bc6265b78865e42982fc2e5c972f";
src = fetchurl {
url = "https://github.com/agda/agda-stdlib/archive/${version}.tar.gz";
sha256 = "11qf87hxx3g0n8i6nkp4vqvh3i0gal6g812p0w2n4k7711nvrp9g";
};
nativeBuildInputs = [ (ghcWithPackages (self : [ self.filemanip ])) ];
@ -22,6 +21,6 @@ agda.mkDerivation (self: rec {
description = "A standard library for use with the Agda compiler";
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.unix;
maintainers = with maintainers; [ jwiegley fuuzetsu ];
maintainers = with maintainers; [ jwiegley fuuzetsu mudri ];
};
})