summary refs log tree commit diff
path: root/pkgs/applications/misc/ebook2cw/default.nix
blob: cce10258cf3bb1ae855766e1e149c753b5037a5e (plain) (blame)
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
29
30
31
{ stdenv, fetchsvn, lame, libvorbis }:

stdenv.mkDerivation rec {

  name = "ebook2cw-${version}";
  version = "0.8.2";

  src = fetchsvn {
    url = "svn://svn.fkurz.net/ebook2cw/tags/${name}";
    sha256 = "1mvp3nz3k76v757792n9b7fcm5jm3jcwarl1k7cila9fi0c2rsiw";
  };

  buildInputs = [ lame libvorbis ];

  patches = [ ./configfile.patch ];

  postPatch = ''
    substituteInPlace Makefile --replace gcc cc
  '';

  makeFlags = [ "DESTDIR=$(out)" ];

  meta = with stdenv.lib; {
    description = "Convert ebooks to Morse MP3s/OGGs";
    homepage = http://fkurz.net/ham/ebook2cw.html;
    license = licenses.gpl2;
    platforms = platforms.all;
    maintainers = with maintainers; [ earldouglas ];
  };

}