nixpkgs/pkgs/development/libraries/agda/agda-prelude/default.nix

24 lines
683 B
Nix
Raw Normal View History

2014-09-27 02:35:54 +01:00
{ stdenv, agda, fetchgit }:
agda.mkDerivation (self: rec {
2016-06-07 10:54:32 +01:00
version = "0dca24a81d417db2ae8fc871eccb7776f7eae952";
2014-09-27 02:35:54 +01:00
name = "agda-prelude-${version}";
src = fetchgit {
url = "https://github.com/UlfNorell/agda-prelude.git";
rev = version;
2016-06-07 10:54:32 +01:00
sha256 = "0gwfgvj96i1mx5v01bi46h567d1q1fbgvzv6z8zv91l2jhybwff5";
2014-09-27 02:35:54 +01:00
};
topSourceDirectories = [ "src" ];
everythingFile = "src/Prelude.agda";
meta = with stdenv.lib; {
homepage = https://github.com/UlfNorell/agda-prelude;
2014-09-27 02:35:54 +01:00
description = "Programming library for Agda";
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.unix;
2016-06-07 10:54:32 +01:00
maintainers = with maintainers; [ fuuzetsu mudri ];
2014-09-27 02:35:54 +01:00
};
})