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

This commit is contained in:
laMudri 2016-06-07 10:52:55 +01:00
parent 55cde25347
commit 2e712b501c
1 changed files with 8 additions and 7 deletions

View File

@ -1,13 +1,14 @@
{ stdenv, agda, fetchgit, ghcWithPackages }: { stdenv, agda, fetchFromGitHub, ghcWithPackages }:
agda.mkDerivation (self: rec { agda.mkDerivation (self: rec {
version = "2.4.2.3"; version = "0.12";
name = "agda-stdlib-${version}"; name = "agda-stdlib-${version}";
src = fetchgit { src = fetchFromGitHub {
url = "git://github.com/agda/agda-stdlib"; repo = "agda-stdlib";
rev = "9c9b3cb28f9a7d39a256890a1469c1a3f7fc4faf"; owner = "agda";
sha256 = "1h64wzm4ysmq3gi33w3kp9h3f471sydpp453yf95bh5f713a8bxk"; rev = "v${version}";
sha256 = "1n5hn3xa0bqyq8rjvfsfmh6z3l8rr4z3s7gyfmf3kiv9f235bnd2";
}; };
nativeBuildInputs = [ (ghcWithPackages (self : [ self.filemanip ])) ]; nativeBuildInputs = [ (ghcWithPackages (self : [ self.filemanip ])) ];
@ -22,6 +23,6 @@ agda.mkDerivation (self: rec {
description = "A standard library for use with the Agda compiler"; description = "A standard library for use with the Agda compiler";
license = stdenv.lib.licenses.mit; license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.unix; platforms = stdenv.lib.platforms.unix;
maintainers = with maintainers; [ jwiegley fuuzetsu ]; maintainers = with maintainers; [ jwiegley fuuzetsu mudri ];
}; };
}) })