nixpkgs/pkgs/development/compilers/agda/stdlib.nix

31 lines
867 B
Nix
Raw Normal View History

2014-05-06 01:51:05 +01:00
{ cabal, fetchurl, filemanip, Agda }:
cabal.mkDerivation (self: rec {
pname = "Agda-stdlib";
version = "0.8.1";
src = fetchurl {
url = "https://github.com/agda/agda-stdlib/archive/v${version}.tar.gz";
sha256 = "0ij4rg4lk0pq01ing285gbmnn23dcf2rhihdcs8bbdpjg52vl4gf";
};
2014-05-06 01:51:05 +01:00
buildDepends = [ filemanip Agda ];
preConfigure = "cd ffi";
postInstall = ''
mkdir -p $out/share
2014-05-06 01:51:05 +01:00
cd ..
${self.ghc.ghc}/bin/runhaskell GenerateEverything
${Agda}/bin/agda -i . -i src Everything.agda
2014-05-06 01:51:05 +01:00
cp -pR src $out/share/agda
'';
meta = {
homepage = "http://wiki.portal.chalmers.se/agda/pmwiki.php?n=Libraries.StandardLibrary";
description = "A standard library for use with the Agda compiler.";
license = "unknown";
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.jwiegley ];
};
})