2017-02-25 22:18:03 +01:00
|
|
|
{stdenv,fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "yasr";
|
2017-04-08 04:55:02 +02:00
|
|
|
|
2017-02-25 22:18:03 +01:00
|
|
|
version = "0.6.9";
|
2017-04-08 04:55:02 +02:00
|
|
|
|
2017-02-25 22:18:03 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://sourceforge.net/projects/yasr/files/yasr/${version}/${pname}-${version}.tar.gz";
|
2017-02-25 22:18:03 +01:00
|
|
|
sha256 = "1prv9r9y6jb5ga5578ldiw507fa414m60xhlvjl29278p3x7rwa1";
|
|
|
|
};
|
2017-04-08 04:55:02 +02:00
|
|
|
|
2017-02-25 22:18:03 +01:00
|
|
|
patches = [
|
2020-08-06 03:13:54 +02:00
|
|
|
./10_fix_openpty_forkpty_declarations.patch
|
|
|
|
./20_maxpathlen.patch
|
|
|
|
./30_conf.patch
|
|
|
|
./40_dectalk_extended_chars.patch
|
2017-02-25 22:18:03 +01:00
|
|
|
]; # taken from the debian yasr package
|
2017-04-08 04:55:02 +02:00
|
|
|
|
2017-02-25 22:18:03 +01:00
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://yasr.sourceforge.net";
|
2017-02-25 22:18:03 +01:00
|
|
|
description = "A general-purpose console screen reader";
|
|
|
|
longDescription = "Yasr is a general-purpose console screen reader for GNU/Linux and other Unix-like operating systems.";
|
2017-04-08 04:55:02 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2017-02-25 22:18:03 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ jhhuh ];
|
|
|
|
};
|
|
|
|
}
|