libticonv: init at 1.1.5
This commit is contained in:
parent
79c610283d
commit
3e51cd164d
38
pkgs/development/libraries/libticonv/default.nix
Normal file
38
pkgs/development/libraries/libticonv/default.nix
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
{ 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"
|
||||||
|
];
|
||||||
|
|
||||||
|
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 luc65r ];
|
||||||
|
platforms = with platforms; linux ++ darwin;
|
||||||
|
};
|
||||||
|
}
|
@ -11,19 +11,9 @@
|
|||||||
, lzma
|
, lzma
|
||||||
, bzip2
|
, bzip2
|
||||||
, gnome2
|
, gnome2
|
||||||
|
, libticonv
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
libticonv = 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" ];
|
|
||||||
};
|
|
||||||
libticables2 = stdenv.mkDerivation rec {
|
libticables2 = stdenv.mkDerivation rec {
|
||||||
pname = "libticables2";
|
pname = "libticables2";
|
||||||
version = "1.3.5";
|
version = "1.3.5";
|
||||||
@ -58,6 +48,7 @@ let
|
|||||||
buildInputs = [ glib libticonv libarchive lzma bzip2 ];
|
buildInputs = [ glib libticonv libarchive lzma bzip2 ];
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "tilem";
|
pname = "tilem";
|
||||||
version = "2.0";
|
version = "2.0";
|
||||||
@ -72,7 +63,7 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = "http://lpg.ticalc.org/prj_tilem/";
|
homepage = "http://lpg.ticalc.org/prj_tilem/";
|
||||||
description = "Emulator and debugger for Texas Instruments Z80-based graphing calculators";
|
description = "Emulator and debugger for Texas Instruments Z80-based graphing calculators";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = with maintainers; [ siraben ];
|
maintainers = with maintainers; [ siraben luc65r ];
|
||||||
platforms = platforms.linux ++ platforms.darwin;
|
platforms = platforms.linux ++ platforms.darwin;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -15270,6 +15270,8 @@ in
|
|||||||
|
|
||||||
libthreadar = callPackage ../development/libraries/libthreadar { };
|
libthreadar = callPackage ../development/libraries/libthreadar { };
|
||||||
|
|
||||||
|
libticonv = callPackage ../development/libraries/libticonv { };
|
||||||
|
|
||||||
libtiff = callPackage ../development/libraries/libtiff { };
|
libtiff = callPackage ../development/libraries/libtiff { };
|
||||||
|
|
||||||
libtiger = callPackage ../development/libraries/libtiger { };
|
libtiger = callPackage ../development/libraries/libtiger { };
|
||||||
|
Loading…
Reference in New Issue
Block a user