libdatrie: 0.2.12 -> 2019-12-20
The last official release is currently blocking pango on cross-compiles, also the package has moved to autotools.
This commit is contained in:
parent
f6f4f1ab4a
commit
35aea2bff5
|
@ -1,23 +1,40 @@
|
||||||
{ stdenv, fetchurl, makeWrapper, installShellFiles, pkg-config, libiconv }:
|
{ stdenv, fetchFromGitHub, makeWrapper
|
||||||
|
, autoreconfHook, autoconf-archive
|
||||||
|
, installShellFiles, libiconv }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "libdatrie";
|
|
||||||
version = "0.2.12";
|
|
||||||
|
|
||||||
src = fetchurl {
|
pname = "libdatrie";
|
||||||
url = "https://github.com/tlwg/libdatrie/releases/download/v${version}/libdatrie-${version}.tar.xz";
|
version = "2019-12-20";
|
||||||
sha256 = "0jdi01pcxv0b24zbjy7zahawsqqqw4mv94f2yy01zh4n796wqba5";
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "tlwg";
|
||||||
|
repo = "libdatrie";
|
||||||
|
rev = "d1db08ac1c76f54ba23d63665437473788c999f3";
|
||||||
|
sha256 = "03dc363259iyiidrgadzc7i03mmfdj8h78j82vk6z53w6fxq5zxc";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ installShellFiles pkg-config ];
|
nativeBuildInputs = [
|
||||||
|
autoreconfHook
|
||||||
|
autoconf-archive
|
||||||
|
installShellFiles
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs = stdenv.lib.optional stdenv.isDarwin libiconv;
|
buildInputs = stdenv.lib.optional stdenv.isDarwin libiconv;
|
||||||
|
|
||||||
|
preAutoreconf = let
|
||||||
|
reports = "https://github.com/tlwg/libdatrie/issues";
|
||||||
|
in
|
||||||
|
''
|
||||||
|
sed -i -e "/AC_INIT/,+3d" configure.ac
|
||||||
|
sed -i "5iAC_INIT(${pname},${version},[${reports}])" configure.ac
|
||||||
|
'';
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
installManPage man/trietool.1
|
installManPage man/trietool.1
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib;{
|
meta = with stdenv.lib; {
|
||||||
homepage = "https://linux.thai.net/~thep/datrie/datrie.html";
|
homepage = "https://linux.thai.net/~thep/datrie/datrie.html";
|
||||||
description = "This is an implementation of double-array structure for representing trie";
|
description = "This is an implementation of double-array structure for representing trie";
|
||||||
license = licenses.lgpl21Plus;
|
license = licenses.lgpl21Plus;
|
||||||
|
|
Loading…
Reference in New Issue