mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
7c09d9d291
Required to work with the new Agda we have
28 lines
858 B
Nix
28 lines
858 B
Nix
{ stdenv, agda, fetchgit, ghcWithPackages }:
|
|
|
|
agda.mkDerivation (self: rec {
|
|
version = "2.4.2.3";
|
|
name = "agda-stdlib-${version}";
|
|
|
|
src = fetchgit {
|
|
url = "git://github.com/agda/agda-stdlib";
|
|
rev = "9c9b3cb28f9a7d39a256890a1469c1a3f7fc4faf";
|
|
sha256 = "521899b820e70abbae7cb30008b87a2f8676bc6265b78865e42982fc2e5c972f";
|
|
};
|
|
|
|
nativeBuildInputs = [ (ghcWithPackages (self : [ self.filemanip ])) ];
|
|
preConfigure = ''
|
|
runhaskell GenerateEverything.hs
|
|
'';
|
|
|
|
topSourceDirectories = [ "src" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://wiki.portal.chalmers.se/agda/pmwiki.php?n=Libraries.StandardLibrary";
|
|
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 ];
|
|
};
|
|
})
|