about summary refs log tree commit diff
path: root/machines
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2018-10-25 01:12:21 +0200
committeraszlig <aszlig@nix.build>2018-10-25 01:12:21 +0200
commit128b715c6193eb72504a62defdf353fd0eb20330 (patch)
tree5b696135af7a8974407ab5eab270201cfc211ea1 /machines
parentc409f41ccbda2b651f7e6f615483623946d6a8d3 (diff)
dnyarri: Drop override for podcastparser
The upstream version 0.6.4 was released 2 months ago and it recently hit
nixpkgs[1], so we can finally drop the override as the new version now
contains the fix[2] for the problem that affected me.

[1]: https://github.com/NixOS/nixpkgs/commit/5e2590ba6fd352bc65b4cd7fd82
[2]: https://github.com/gpodder/podcastparser/pull/17

Signed-off-by: aszlig <aszlig@nix.build>
Diffstat (limited to 'machines')
-rw-r--r--machines/aszlig/dnyarri.nix18
1 files changed, 1 insertions, 17 deletions
diff --git a/machines/aszlig/dnyarri.nix b/machines/aszlig/dnyarri.nix
index 443c6379..e4c5e937 100644
--- a/machines/aszlig/dnyarri.nix
+++ b/machines/aszlig/dnyarri.nix
@@ -50,23 +50,7 @@ in {
   };
 
   environment.systemPackages = [
-    (pkgs.gpodder.override {
-      python3Packages = (pkgs.python3.override {
-        packageOverrides = lib.const (super: {
-          podcastparser = super.podcastparser.overridePythonAttrs (drv: let
-            assertVer = assert lib.versionOlder drv.version "0.6.4"; lib.id;
-          in {
-            version = "0.6.3";
-            src = assertVer (pkgs.fetchFromGitHub {
-              owner = "gpodder";
-              repo = "podcastparser";
-              rev = "ca8849f25e08b1aa7fa806c7a27dac200f7a2e8d";
-              sha256 = "105hlkm5h8lzj6dr2jvpc3zqdy7ayaxh9g99mv1m0f7l8mljz26a";
-            });
-          });
-        });
-      }).pkgs;
-    })
+    pkgs.gpodder
     pkgs.paperwork
   ];