nixpkgs/pkgs/applications/audio/yasr/default.nix

29 lines
847 B
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{lib, stdenv,fetchurl}:
2017-02-25 21:18:03 +00:00
stdenv.mkDerivation rec {
pname = "yasr";
2017-04-08 02:55:02 +00:00
2017-02-25 21:18:03 +00:00
version = "0.6.9";
2017-04-08 02:55:02 +00:00
2017-02-25 21:18:03 +00:00
src = fetchurl {
url = "https://sourceforge.net/projects/yasr/files/yasr/${version}/${pname}-${version}.tar.gz";
2017-02-25 21:18:03 +00:00
sha256 = "1prv9r9y6jb5ga5578ldiw507fa414m60xhlvjl29278p3x7rwa1";
};
2017-04-08 02:55:02 +00:00
2017-02-25 21:18:03 +00:00
patches = [
2020-08-06 01:13:54 +00:00
./10_fix_openpty_forkpty_declarations.patch
./20_maxpathlen.patch
./30_conf.patch
./40_dectalk_extended_chars.patch
2017-02-25 21:18:03 +00:00
]; # taken from the debian yasr package
2017-04-08 02:55:02 +00:00
2017-02-25 21:18:03 +00:00
meta = {
homepage = "http://yasr.sourceforge.net";
2017-02-25 21:18:03 +00: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.";
2021-01-15 13:21:58 +00:00
platforms = lib.platforms.linux;
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ jhhuh ];
2017-02-25 21:18:03 +00:00
};
}