From 6609282c70e881b32688cb1bf0f2e02a95d2306e Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sat, 5 Jun 2021 20:43:08 +0200 Subject: [PATCH] snownews: unstable-2021-06-04 -> unstable-2021-06-05 --- snownews/default.nix | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/snownews/default.nix b/snownews/default.nix index 4acd3ef..10a92ee 100644 --- a/snownews/default.nix +++ b/snownews/default.nix @@ -1,24 +1,16 @@ -{ lib, stdenv, fetchFromGitHub, fetchpatch, pkg-config, which, curl, gettext, libxml2, ncurses, openssl }: +{ lib, stdenv, fetchFromGitHub, pkg-config, which, curl, gettext, libxml2, ncurses, openssl }: stdenv.mkDerivation rec { pname = "snownews"; - version = "unstable-2021-06-04"; + version = "unstable-2021-06-05"; src = fetchFromGitHub { owner = "msharov"; repo = pname; - rev = "f0834270dfd54cd6075a603c55e92a490c7d0ace"; - sha256 = "1rqnj6079dhzwlav5physk1h6pxnhbax2bzg3dcp8sr2b7wdzwcz"; + rev = "0c0bce7d59fa4fc6d66b4472682d7afcec59c9fb"; + sha256 = "1cp0igx433vwbrh1igc9vr1xbfnfwn0312dnhfvbciqk0ss5wij7"; }; - patches = [ - (fetchpatch { - name = "0001-Encode-feed-title-and-url-for-urls.opml.patch"; - url = "https://github.com/sbruder/snownews/commit/01b291ebd04c67f557b7bf8233fa43f5cda55294.patch"; - sha256 = "0q8b2amidndd2yyhdxhqxm4an2f6yc3aacsf84krbfr4nr37fqck"; - }) - ]; - nativeBuildInputs = [ pkg-config which ]; buildInputs = [ curl gettext libxml2 ncurses openssl ];