2014-10-27 17:46:14 +01:00
|
|
|
{ stdenv, fetchurl
|
2016-01-01 04:38:49 +01:00
|
|
|
, slang, ncurses, openssl }:
|
2014-03-21 19:07:56 +01:00
|
|
|
|
2014-10-27 17:46:14 +01:00
|
|
|
let version = "1.0.2"; in
|
2014-03-21 19:07:56 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "slrn-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2014-10-27 17:46:14 +01:00
|
|
|
url = "http://www.jedsoft.org/releases/slrn/slrn-${version}.tar.gz";
|
|
|
|
sha256 = "1gn6m2zha2nnnrh9lz3m3nrqk6fgfij1wc53pg25j7sdgvlziv12";
|
2014-03-21 19:07:56 +01:00
|
|
|
};
|
|
|
|
|
2014-03-21 21:32:21 +01:00
|
|
|
preConfigure = ''
|
|
|
|
sed -i -e "s|-ltermcap|-lncurses|" configure
|
|
|
|
sed -i autoconf/Makefile.in src/Makefile.in \
|
|
|
|
-e "s|/bin/cp|cp|" \
|
|
|
|
-e "s|/bin/rm|rm|"
|
|
|
|
'';
|
|
|
|
|
2016-04-16 19:46:45 +02:00
|
|
|
configureFlags = "--with-slang=${slang.dev} --with-ssl=${openssl.dev}";
|
2014-03-21 21:32:21 +01:00
|
|
|
|
2016-01-01 04:38:49 +01:00
|
|
|
buildInputs = [ slang ncurses openssl ];
|
2014-03-21 19:07:56 +01:00
|
|
|
|
2014-10-27 17:46:14 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "The slrn (S-Lang read news) newsreader";
|
2014-03-21 19:07:56 +01:00
|
|
|
homepage = http://slrn.sourceforge.net/index.html;
|
2015-12-05 22:41:25 +01:00
|
|
|
maintainers = with maintainers; [ ehmry ];
|
2014-10-27 17:46:14 +01:00
|
|
|
license = licenses.gpl2;
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = with platforms; linux;
|
2014-03-21 19:07:56 +01:00
|
|
|
};
|
|
|
|
}
|