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

27 lines
592 B

{ build-idris-package
, fetchFromGitHub
, effects
, lib
}:
build-idris-package {
pname = "test";
version = "2017-03-30";
idrisDeps = [ effects ];
src = fetchFromGitHub {
owner = "jfdm";
repo = "idris-testing";
rev = "604d56f77054931b21975198be669e22427b1f52";
sha256 = "1pmyhs3jx6wd0pzjd3igfxb9zjs8pqmk4ah352bxjrqdnhqwrl51";
};
doCheck = false;
meta = {
description = "Testing Utilities for Idris programs";
homepage = "https://github.com/jfdm/idris-testing";
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.brainrape ];
};
}