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

29 lines
847 B
Nix
Raw Normal View History

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