lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

ebook2cw: init at 0.8.2

+44
+11
pkgs/applications/misc/ebook2cw/configfile.patch
··· 1 + --- a/ebook2cw.c 2017-11-08 19:52:58.298131348 -0700 2 + +++ b/ebook2cw.c 2017-11-08 19:53:02.588231067 -0700 3 + @@ -136,7 +136,7 @@ 4 + char isomap[256][4]; /* by these strings */ 5 + char utf8map[256][8]; 6 + 7 + - char configfile[1025]; 8 + + char configfile[2048]; 9 + 10 + char id3_author[80], 11 + id3_title[80],
+31
pkgs/applications/misc/ebook2cw/default.nix
··· 1 + { stdenv, fetchsvn, lame, libvorbis }: 2 + 3 + stdenv.mkDerivation rec { 4 + 5 + name = "ebook2cw-${version}"; 6 + version = "0.8.2"; 7 + 8 + src = fetchsvn { 9 + url = "svn://svn.fkurz.net/ebook2cw/tags/${name}"; 10 + sha256 = "1mvp3nz3k76v757792n9b7fcm5jm3jcwarl1k7cila9fi0c2rsiw"; 11 + }; 12 + 13 + buildInputs = [ lame libvorbis ]; 14 + 15 + patches = [ ./configfile.patch ]; 16 + 17 + postPatch = '' 18 + substituteInPlace Makefile --replace gcc cc 19 + ''; 20 + 21 + makeFlags = [ "DESTDIR=$(out)" ]; 22 + 23 + meta = with stdenv.lib; { 24 + description = "Convert ebooks to Morse MP3s/OGGs"; 25 + homepage = http://fkurz.net/ham/ebook2cw.html; 26 + license = licenses.gpl2; 27 + platforms = platforms.all; 28 + maintainers = with maintainers; [ earldouglas ]; 29 + }; 30 + 31 + }
+2
pkgs/top-level/all-packages.nix
··· 124 124 125 125 dump1090 = callPackage ../applications/misc/dump1090 { }; 126 126 127 + ebook2cw = callPackage ../applications/misc/ebook2cw { }; 128 + 127 129 vsenv = callPackage ../build-support/vsenv { 128 130 vs = vs90wrapper; 129 131 };