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/'
27 lines
602 B
Nix
27 lines
602 B
Nix
{ build-idris-package
|
|
, fetchFromGitHub
|
|
, contrib
|
|
, lib
|
|
}:
|
|
build-idris-package {
|
|
pname = "tap";
|
|
version = "2017-04-08";
|
|
|
|
ipkgName = "TAP";
|
|
idrisDeps = [ contrib ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ostera";
|
|
repo = "tap-idris";
|
|
rev = "0d019333e1883c1d60e151af1acb02e2b531e72f";
|
|
sha256 = "0fhlmmivq9xv89r7plrnhmvay1j7bapz3wh7y8lygwvcrllh9zxs";
|
|
};
|
|
|
|
meta = {
|
|
description = "Simple TAP producer and consumer/reporter for Idris";
|
|
homepage = "https://github.com/ostera/tap-idris";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = [ lib.maintainers.brainrape ];
|
|
};
|
|
}
|