mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
agda-stdlib: 2.4.2.3 -> v0.12 (for Agda-2.5.1)
This commit is contained in:
parent
68e1419cb8
commit
072ce88eb9
1 changed files with 6 additions and 7 deletions
|
@ -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 ];
|
||||
};
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue