mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
20 lines
594 B
Nix
20 lines
594 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libunibreak";
|
|
version = "1.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/vimgadgets/libunibreak/${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "02657l426bk5d8h42b9ixxy1clc50mx4bzwg02nkdhs09wqw32wn";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://vimgadgets.sourceforge.net/libunibreak/";
|
|
description = "A library implementing a line breaking algorithm as described in Unicode 6.0.0 Standard";
|
|
license = licenses.zlib;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.coroa ];
|
|
};
|
|
}
|