nixpkgs-suyu/pkgs/development/libraries/fribidi/default.nix

31 lines
833 B
Nix
Raw Normal View History

2018-06-02 00:01:37 +02:00
{ stdenv
, fetchurl
, meson
, ninja
, pkgconfig
}:
stdenv.mkDerivation rec {
2018-06-02 00:01:37 +02:00
name = "${pname}-${version}";
pname = "fribidi";
version = "1.0.4";
2015-12-23 02:59:47 +01:00
2018-06-02 00:01:37 +02:00
# NOTE: 2018-06-06 v1.0.4: Only URL tarball has "Have pre-generated man pages: true", which works-around upstream usage of some rare ancient `c2man` fossil application.
src = fetchurl {
url = "https://github.com/${pname}/${pname}/releases/download/v${version}/${name}.tar.bz2";
sha256 = "1gipy8fjyn6i4qrhima02x8xs493d21f22dijp88nk807razxgcl";
};
2018-06-02 00:01:37 +02:00
nativeBuildInputs = [ meson ninja pkgconfig ];
2015-12-23 02:59:47 +01:00
2016-09-15 10:39:29 +02:00
outputs = [ "out" "devdoc" ];
meta = with stdenv.lib; {
homepage = https://github.com/fribidi/fribidi;
description = "GNU implementation of the Unicode Bidirectional Algorithm (bidi)";
license = licenses.lgpl21;
platforms = platforms.unix;
};
}