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
40 lines
794 B
Nix
40 lines
794 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
pkg-config,
|
|
autoreconfHook,
|
|
glib,
|
|
libarchive,
|
|
libticonv,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libtifiles2";
|
|
version = "1.1.7";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/tilp/${pname}-${version}.tar.bz2";
|
|
sha256 = "10n9mhlabmaw3ha5ckllxfy6fygs2pmlmj5v6w5v62bvx54kpils";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
libarchive
|
|
libticonv
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|