nixpkgs/pkgs/development/idris-modules/specdris.nix

34 lines
673 B
Nix
Raw Normal View History

2017-11-21 22:59:38 +00:00
{ build-idris-package
, fetchgit
, prelude
, base
, effects
, lib
, idris
}:
let
date = "2017-11-11";
in
build-idris-package {
name = "specdris";
version = date;
2017-11-21 22:59:38 +00:00
src = fetchgit {
url = "https://github.com/pheymann/specdris";
rev = "88b80334b8e0b6601324e2410772d35022fc8eaa";
sha256 = "4813c4be1d4c3dd1dad35964b085f83cf9fb44b16824257c72b468d4bafd0e4f";
};
idrisDeps = [ prelude base effects idris ];
2017-11-21 22:59:38 +00:00
# The tests attribute is very strange as the tests are a different ipkg
doCheck = false;
2017-11-21 22:59:38 +00:00
meta = {
description = "A testing library for Idris";
homepage = https://github.com/pheymann/specdris;
license = lib.licenses.mit;
};
}