nixpkgs/pkgs/development/libraries/utf8proc/default.nix

22 lines
567 B
Nix
Raw Normal View History

2015-10-10 17:56:43 +00:00
{ stdenv, fetchurl }:
2014-12-08 20:53:52 +00:00
stdenv.mkDerivation rec {
name = "utf8proc-${version}";
2015-10-10 17:56:43 +00:00
version = "1.3";
2014-12-08 20:53:52 +00:00
2015-10-10 17:56:43 +00:00
src = fetchurl {
url = "https://github.com/JuliaLang/utf8proc/archive/v${version}.tar.gz";
sha256 = "07r7djkmd399wl9cn0s2iqjhmm7l5iifp5h1yf2in9s366mlhkkg";
2014-12-08 20:53:52 +00:00
};
makeFlags = [ "prefix=$(out)" ];
2014-12-08 20:53:52 +00:00
2015-05-29 19:48:46 +00:00
meta = with stdenv.lib; {
description = "A clean C library for processing UTF-8 Unicode data";
homepage = http://julialang.org/utf8proc;
license = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.ftrvxmtrx ];
2014-12-08 20:53:52 +00:00
};
}