snownews: drop

master
Simon Bruder 2022-11-04 21:00:22 +01:00
parent ed08019dbb
commit 6acbe09487
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
3 changed files with 0 additions and 27 deletions

View File

@ -41,8 +41,6 @@ in
playgsf = callPackage ./playgsf { };
snownews = callPackage ./snownews { };
textidote = callPackage ./textidote { };
unxwb = callPackage ./unxwb { };

View File

@ -57,7 +57,6 @@
netstick
nsz
playgsf
snownews
textidote
unxwb
vgmstream;

View File

@ -1,24 +0,0 @@
{ lib, stdenv, fetchFromGitHub, pkg-config, which, curl, gettext, libxml2, ncurses, openssl }:
stdenv.mkDerivation rec {
pname = "snownews";
version = "unstable-2021-06-05";
src = fetchFromGitHub {
owner = "msharov";
repo = pname;
rev = "0c0bce7d59fa4fc6d66b4472682d7afcec59c9fb";
sha256 = "1cp0igx433vwbrh1igc9vr1xbfnfwn0312dnhfvbciqk0ss5wij7";
};
nativeBuildInputs = [ pkg-config which ];
buildInputs = [ curl gettext libxml2 ncurses openssl ];
meta = with lib; {
description = "A text-mode RSS feed reader";
homepage = "https://github.com/msharov/snownews";
license = licenses.gpl3Only;
maintainers = with maintainers; [ sbruder ];
platforms = platforms.unix;
};
}