26 lines
596 B
Nix
Raw Normal View History

2015-05-29 21:48:46 +02:00
{ stdenv, fetchFromGitHub }:
2014-12-08 23:53:52 +03:00
stdenv.mkDerivation rec {
name = "utf8proc-${version}";
2015-05-29 21:48:46 +02:00
version = "v1.2";
2014-12-08 23:53:52 +03:00
2015-05-29 21:48:46 +02:00
src = fetchFromGitHub {
owner = "JuliaLang";
repo = "utf8proc";
rev = "${version}";
sha256 = "1ryjlcnpfm7fpkq6444ybi576hbnh2l0w7kjhbqady5lxwjyg3pf";
2014-12-08 23:53:52 +03:00
};
installPhase = ''
2015-05-29 21:48:46 +02:00
make install prefix=$out
2014-12-08 23:53:52 +03:00
'';
2015-05-29 21:48:46 +02: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 23:53:52 +03:00
};
}