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

29 lines
835 B
Nix
Raw Normal View History

2017-02-25 21:18:03 +00:00
{stdenv,fetchurl}:
stdenv.mkDerivation rec {
name = "yasr-${version}";
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}/${name}.tar.gz";
sha256 = "1prv9r9y6jb5ga5578ldiw507fa414m60xhlvjl29278p3x7rwa1";
};
2017-04-08 02:55:02 +00:00
2017-02-25 21:18:03 +00:00
patches = [
./10_fix_openpty_forkpty_declarations
./20_maxpathlen
./30_conf
./40_dectalk_extended_chars
]; # 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.";
2017-04-08 02:55:02 +00:00
platforms = stdenv.lib.platforms.linux;
2017-02-25 21:18:03 +00:00
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ jhhuh ];
};
}