3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/stfl/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
989 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, ncurses, libiconv }:
2013-06-02 07:27:00 +01:00
stdenv.mkDerivation rec {
pname = "stfl";
version = "0.24";
2013-06-02 07:27:00 +01:00
src = fetchurl {
url = "http://www.clifford.at/stfl/stfl-${version}.tar.gz";
sha256 = "1460d5lc780p3q38l3wc9jfr2a7zlyrcra0li65aynj738cam9yl";
2013-06-02 07:27:00 +01:00
};
buildInputs = [ ncurses libiconv ];
2013-06-02 07:27:00 +01:00
preBuild = ''
sed -i s/gcc/cc/g Makefile
2013-06-02 07:27:00 +01:00
sed -i s%ncursesw/ncurses.h%ncurses.h% stfl_internals.h
'' + lib.optionalString stdenv.isDarwin ''
2013-06-02 07:27:00 +01:00
sed -i s/-soname/-install_name/ Makefile
'';
installPhase = ''
DESTDIR=$out prefix=\"\" make install
# some programs rely on libstfl.so.0 to be present, so link it
ln -s $out/lib/libstfl.so.0.24 $out/lib/libstfl.so.0
2013-06-02 07:27:00 +01:00
'';
meta = {
2021-11-09 19:53:19 +00:00
homepage = "http://www.clifford.at/stfl/";
2013-06-02 07:27:00 +01:00
description = "A library which implements a curses-based widget set for text terminals";
maintainers = with lib.maintainers; [ lovek323 ];
2021-11-09 19:53:19 +00:00
license = lib.licenses.lgpl3;
platforms = lib.platforms.unix;
2013-06-02 07:27:00 +01:00
};
}