nixpkgs/pkgs/development/ocaml-modules/estring/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

18 lines
442 B
Nix

{ stdenv, buildOcaml, fetchurl }:
buildOcaml rec {
name = "estring";
version = "1.3";
src = fetchurl {
url = "https://forge.ocamlcore.org/frs/download.php/1012/estring-${version}.tar.gz";
sha256 = "0b6znz5igm8pp28w4b7sgy82rpd9m5aw6ss933rfbw1mrh05gvcg";
};
meta = with stdenv.lib; {
homepage = http://estring.forge.ocamlcore.org/;
description = "Extension for string literals";
license = licenses.bsd3;
};
}