aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/audio/yasr/default.nix
blob: fed2ee0d8f75398de21fb2f4bb14db23e0ed85a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{stdenv,fetchurl}:

stdenv.mkDerivation rec {
  pname = "yasr";

  version = "0.6.9";

  src = fetchurl {
    url = "https://sourceforge.net/projects/yasr/files/yasr/${version}/${pname}-${version}.tar.gz";
    sha256 = "1prv9r9y6jb5ga5578ldiw507fa414m60xhlvjl29278p3x7rwa1";
  };

  patches = [
    ./10_fix_openpty_forkpty_declarations.patch
    ./20_maxpathlen.patch
    ./30_conf.patch
    ./40_dectalk_extended_chars.patch
  ]; # taken from the debian yasr package

  meta = {
    homepage = "http://yasr.sourceforge.net";
    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.";
    platforms = stdenv.lib.platforms.linux;
    license = stdenv.lib.licenses.gpl2;
    maintainers = with stdenv.lib.maintainers; [ jhhuh ];
  };
}