Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: dd4e17159c58
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 62d0aecad391
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 30, 2019

  1. sabnzbd: 2.3.7 -> 2.3.8 (#58357)

    rembo10 authored and xeji committed Mar 30, 2019
    Copy the full SHA
    62d0aec View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/servers/sabnzbd/default.nix
4 changes: 2 additions & 2 deletions pkgs/servers/sabnzbd/default.nix
Original file line number Diff line number Diff line change
@@ -4,15 +4,15 @@ let
pythonEnv = python2.withPackages(ps: with ps; [ cryptography cheetah yenc sabyenc ]);
path = stdenv.lib.makeBinPath [ par2cmdline unrar unzip p7zip ];
in stdenv.mkDerivation rec {
version = "2.3.7";
version = "2.3.8";
pname = "sabnzbd";
name = "${pname}-${version}";

src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
sha256 = "08bk2ignm50ki2bqwwl0q9pia7v91cixr5b1yibz6qxsyfprk0mj";
sha256 = "1kdm2gv4mpdmyzfm9mfv26yxvjks8ii7c12hprp1zrmcindxg03g";
};

buildInputs = [ pythonEnv makeWrapper ];