nixpkgs/pkgs/development/ocaml-modules/ppx_blob/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

20 lines
519 B
Nix

{ stdenv, buildOcaml, fetchurl, ppx_tools }:
buildOcaml rec {
name = "ppx_blob";
version = "0.2";
src = fetchurl {
url = "https://github.com/johnwhitington/ppx_blob/archive/v${version}.tar.gz";
sha256 = "0kvqfm47f4xbgz0cl7ayz29myyb24xskm35svqrgakjq12nkpsss";
};
buildInputs = [ ppx_tools ];
meta = with stdenv.lib; {
homepage = https://github.com/johnwhitington/ppx_blob;
description = "OCaml ppx to include binary data from a file as a string";
license = licenses.unlicense;
};
}