mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-06 09:12:35 +03:00
31 lines
620 B
Nix
31 lines
620 B
Nix
{ build-idris-package
|
|
, fetchgit
|
|
, prelude
|
|
, base
|
|
, effects
|
|
, lib
|
|
, idris
|
|
}:
|
|
|
|
build-idris-package {
|
|
name = "specdris";
|
|
version = "2018-01-23";
|
|
|
|
src = fetchgit {
|
|
url = "https://github.com/pheymann/specdris";
|
|
rev = "625f88f5e118e53f30bcf5e5f3dcf48eb268ac21";
|
|
sha256 = "1gc717xf4i7z75aqazy5wqm7b1dqfyx5pprdypxz1h3980m67fsa";
|
|
};
|
|
|
|
idrisDeps = [ prelude base effects idris ];
|
|
|
|
# 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;
|
|
};
|
|
}
|