nixpkgs/pkgs/development/idris-modules/http.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
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/'
2024-06-09 23:07:45 +02:00

28 lines
588 B
Nix

{ build-idris-package
, fetchFromGitHub
, contrib
, lightyear
, bytes
, lib
}:
build-idris-package {
pname = "http";
version = "2018-02-25";
idrisDeps = [ contrib lightyear bytes ];
src = fetchFromGitHub {
owner = "uwap";
repo = "idris-http";
rev = "dc4a31543f87c0bc44cbaa98192f0303cd8dd82e";
sha256 = "1abrwi5ikymff4g7a0g5wskycvhpnn895z1z1bz9r71ks554ypl8";
};
meta = {
description = "HTTP library for idris";
homepage = "https://github.com/uwap/idris-http";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.brainrape ];
};
}