1451a52a38
I haven't been doing any maintenance for a long time now and not only do I get notified, it also creates a fake impression that all these packages had at least one maintainer when in practice they had none.
24 lines
674 B
Nix
24 lines
674 B
Nix
{ stdenv, agda, fetchgit }:
|
|
|
|
agda.mkDerivation (self: rec {
|
|
version = "eacc961c2c312b7443109a7872f99d55557df317";
|
|
name = "agda-prelude-${version}";
|
|
|
|
src = fetchgit {
|
|
url = "https://github.com/UlfNorell/agda-prelude.git";
|
|
rev = version;
|
|
sha256 = "0iql67hb1q0fn8dwkcx07brkdkxqfqrsbwjy71ndir0k7qzw7qv2";
|
|
};
|
|
|
|
topSourceDirectories = [ "src" ];
|
|
everythingFile = "src/Prelude.agda";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/UlfNorell/agda-prelude;
|
|
description = "Programming library for Agda";
|
|
license = stdenv.lib.licenses.mit;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = with maintainers; [ mudri ];
|
|
};
|
|
})
|