aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/libraries/libunibreak/default.nix
blob: 5b549176889159e45388e89e0334539601d6d7df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ 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 ];
  };
}