mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 22:43:01 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
28 lines
587 B
Nix
28 lines
587 B
Nix
{ 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 = "Testing library for Idris";
|
|
homepage = "https://github.com/pheymann/specdris";
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|