mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
20 lines
590 B
Nix
20 lines
590 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libunibreak-${version}";
|
|
version = "1.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/vimgadgets/libunibreak/${version}/${name}.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 ];
|
|
};
|
|
}
|