My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/idris-modules/setoids.nix

24 lines
549 B

{ build-idris-package
, fetchFromGitHub
, contrib
, lib
}:
build-idris-package {
pname = "setoids";
version = "2018-06-18";
idrisDeps = [ contrib ];
src = fetchFromGitHub {
owner = "danilkolikov";
repo = "setoids";
rev = "41b4af3b1a537d9471107a639ad77c7abee2de18";
sha256 = "0fl1g59s16vnrdnplps5ncv27j7a93nxp9cmqp2iavjxlzlzin1v";
};
meta = {
description = "Idris proofs for extensional equalities";
homepage = "https://github.com/danilkolikov/setoids";
maintainers = [ lib.maintainers.brainrape ];
};
}