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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, stdenv
, buildPackages
2018-06-01 23:01:37 +01:00
, fetchurl
, meson
, ninja
, pkg-config
, fixDarwinDylibNames
2018-07-18 00:10:54 +01:00
, python3
2018-06-01 23:01:37 +01:00
}:
stdenv.mkDerivation rec {
2018-06-01 23:01:37 +01:00
pname = "fribidi";
2023-05-19 10:25:39 +01:00
version = "1.0.13";
2015-12-23 01:59:47 +00:00
outputs = [ "out" "dev" "devdoc" ];
2018-07-18 00:10:54 +01:00
2019-10-03 09:59:44 +01:00
# NOTE: Only URL tarball has "Have pre-generated man pages: true", which works-around upstream usage of some rare ancient `c2man` fossil application.
2018-06-01 23:01:37 +01:00
src = fetchurl {
url = "https://github.com/fribidi/fribidi/releases/download/v${version}/${pname}-${version}.tar.xz";
2023-05-19 10:25:39 +01:00
sha256 = "sha256-f6FsgMgb1iL3sZjTE1baE5zDGKY/x3YSF69BMJA/VKI=";
};
2018-07-18 00:10:54 +01:00
postPatch = ''
patchShebangs test
'';
nativeBuildInputs = [ meson ninja pkg-config ]
++ lib.optional stdenv.isDarwin fixDarwinDylibNames;
2015-12-23 01:59:47 +00:00
depsBuildBuild = [ buildPackages.stdenv.cc ];
doCheck = true;
nativeCheckInputs = [ python3 ];
2016-09-15 09:39:29 +01:00
meta = with lib; {
homepage = "https://github.com/fribidi/fribidi";
description = "GNU implementation of the Unicode Bidirectional Algorithm (bidi)";
license = licenses.lgpl21;
platforms = platforms.unix;
};
}