Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
529 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
build-idris-package,
fetchFromGitHub,
lib,
}:
build-idris-package {
pname = "mapping";
version = "2018-02-27";
src = fetchFromGitHub {
owner = "zaoqi";
repo = "Mapping.idr";
rev = "4f226933d4491b8fd09f9d9a7b862c0cc646b936";
sha256 = "1skkb7jz2lv0xg4n5m0vd9xddg3x01459dwx1jxnpc7ifask4cda";
};
meta = {
description = "Idris mapping library";
homepage = "https://github.com/zaoqi/Mapping.idr";
license = lib.licenses.agpl3Plus;
maintainers = [ lib.maintainers.brainrape ];
};
}