nixpkgs/pkgs/development/libraries/stfl/default.nix
Ryan Mulligan 7620b00481 stfl: 0.22 -> 0.24
Semi-automatic update. These checks were performed:

- built on NixOS
- found 0.24 with grep in /nix/store/9xdm9pfw8ckr8n58f2n2pz7vpz54wj72-stfl-0.24
- found 0.24 in filename of file in /nix/store/9xdm9pfw8ckr8n58f2n2pz7vpz54wj72-stfl-0.24

cc "@lovek323"
2018-03-01 15:27:03 +01:00

40 lines
1.1 KiB
Nix

{ stdenv, fetchurl, ncurses, libiconv }:
stdenv.mkDerivation rec {
name = "stfl-0.24";
src = fetchurl {
url = "http://www.clifford.at/stfl/${name}.tar.gz";
sha256 = "1460d5lc780p3q38l3wc9jfr2a7zlyrcra0li65aynj738cam9yl";
};
buildInputs = [ ncurses libiconv ];
buildPhase = ''
sed -i s/gcc/cc/g Makefile
sed -i s%ncursesw/ncurses.h%ncurses.h% stfl_internals.h
'' + stdenv.lib.optionalString (stdenv.hostPlatform.libc != "glibc") ''
sed -i 's/LDLIBS += -lncursesw/LDLIBS += -lncursesw -liconv/' Makefile
'' + ( stdenv.lib.optionalString stdenv.isDarwin ''
sed -i s/-soname/-install_name/ Makefile
'' ) + ''
make
'';
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
'';
meta = {
homepage = http://www.clifford.at/stfl/;
description = "A library which implements a curses-based widget set for text terminals";
maintainers = with stdenv.lib.maintainers; [ lovek323 ];
license = stdenv.lib.licenses.lgpl3;
platforms = stdenv.lib.platforms.unix;
};
}