13 stdenv.mkDerivation (finalAttrs: {
18 url = "http://savannah.nongnu.org/download/castget/castget-${finalAttrs.version}.tar.bz2";
19 hash = "sha256-Q4tffsfjGkXtN1ZjD+RH9CAVrNpT7AkgL0hihya16HU=";
22 # without this, the build fails because of an encoding issue with the manual page.
23 # https://stackoverflow.com/a/17031697/4935114
24 # This requires glibcLocales to be present in the build so it will have an impact.
25 # See https://github.com/NixOS/nixpkgs/issues/8398
27 export LC_ALL="en_US.UTF-8";
38 # See comment on locale above
44 description = "Simple, command-line based RSS enclosure downloader";
45 mainProgram = "castget";
47 castget is a simple, command-line based RSS enclosure downloader. It is
48 primarily intended for automatic, unattended downloading of podcasts.
50 homepage = "https://castget.johndal.com/";
51 maintainers = with maintainers; [ doronbehar ];
52 license = licenses.gpl2;
53 platforms = platforms.linux;