e08b9ab8d3
Conflicts: pkgs/applications/networking/mailreaders/sup/default.nix pkgs/development/compilers/ghc/7.8.3-binary.nix pkgs/development/interpreters/php/5.3.nix pkgs/development/interpreters/ruby/patches.nix pkgs/development/libraries/cairo/default.nix pkgs/development/libraries/poppler/default.nix pkgs/top-level/all-packages.nix
38 lines
1.0 KiB
Nix
38 lines
1.0 KiB
Nix
{ stdenv, fetchurl, ncurses, libiconv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "stfl-0.22";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.clifford.at/stfl/${name}.tar.gz";
|
|
sha256 = "062lqlf3qhp8bcapbpc0k3wym7x6ngncql8jmx5x06p6679szp9d";
|
|
};
|
|
|
|
buildInputs = [ ncurses libiconv ];
|
|
|
|
buildPhase = ''
|
|
sed -i s%ncursesw/ncurses.h%ncurses.h% stfl_internals.h
|
|
'' + ( stdenv.lib.optionalString stdenv.isDarwin ''
|
|
sed -i 's/LDLIBS += -lncursesw/LDLIBS += -lncursesw -liconv/' Makefile
|
|
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.22 $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;
|
|
};
|
|
}
|
|
|