mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
7c66fb1ec5
They said they haven't used Nix in a while and is not interested in maintaining cemu-ti (presumably other packages too), so I asked to take over his role. I removed luc65r from the meta.maintainers attribtes, and adopted the packages I wanted to adopt. I chose to adopt the TI graphing calculator-related packages as I am part of Cemetech.
39 lines
846 B
Nix
39 lines
846 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 clevor ];
|
|
platforms = with platforms; linux ++ darwin;
|
|
};
|
|
}
|