Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
41 lines
849 B
Nix
41 lines
849 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
pkg-config,
|
|
autoreconfHook,
|
|
glib,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libticonv";
|
|
version = "1.1.5";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/tilp/${pname}-${version}.tar.bz2";
|
|
sha256 = "0y080v12bm81wgjm6fnw7q0yg7scphm8hhrls9njcszj7fkscv9i";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
];
|
|
|
|
configureFlags = [
|
|
"--enable-iconv"
|
|
]
|
|
++ lib.optional stdenv.hostPlatform.isDarwin "LDFLAGS=-liconv";
|
|
|
|
meta = with lib; {
|
|
changelog = "http://lpg.ticalc.org/prj_tilp/news.html";
|
|
description = "This library is part of the TiLP framework";
|
|
homepage = "http://lpg.ticalc.org/prj_tilp/";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ siraben ];
|
|
platforms = with platforms; linux ++ darwin;
|
|
};
|
|
}
|