1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/development/idris-modules/mhd.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

31 lines
721 B
Nix

{ build-idris-package
, fetchFromGitHub
, contrib
, effects
, libmicrohttpd
, lib
}:
build-idris-package {
pname = "mhd";
version = "2016-04-22";
ipkgName = "MHD";
idrisDeps = [ contrib effects ];
extraBuildInputs = [ libmicrohttpd ];
src = fetchFromGitHub {
owner = "colin-adams";
repo = "idris-libmicrohttpd";
rev = "a8808bc06fa292d4b3389f32cb00716e43122a46";
sha256 = "0wvp1qi3bn4hk52vsid6acfwvwbs58sggylbpjvkxzycsbhz4nx4";
};
meta = {
description = "Binding of the GNU libmicrohttpd library to the Idris C backend";
homepage = "https://github.com/colin-adams/idris-libmicrohttpd";
license = lib.licenses.lgpl21;
maintainers = [ lib.maintainers.brainrape ];
};
}