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/specdris.nix

27 lines
589 B

{ build-idris-package
, fetchFromGitHub
, effects
, lib
}:
build-idris-package {
pname = "specdris";
version = "2018-01-23";
src = fetchFromGitHub {
owner = "pheymann";
repo = "specdris";
rev = "625f88f5e118e53f30bcf5e5f3dcf48eb268ac21";
sha256 = "1gc717xf4i7z75aqazy5wqm7b1dqfyx5pprdypxz1h3980m67fsa";
};
idrisDeps = [ effects ];
# tests use a different ipkg and directory structure
doCheck = false;
meta = {
description = "A testing library for Idris";
homepage = "https://github.com/pheymann/specdris";
license = lib.licenses.mit;
};
}