Skip to content

Commit

Permalink
sickgear: fix build
Browse files Browse the repository at this point in the history
A Python env was added as buildInput, however, `buildPythonApplication` already
provides a `python` which apparently took precedence.
  • Loading branch information
FRidh committed Feb 16, 2019
1 parent 46be627 commit e0e7e86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/servers/sickbeard/sickgear.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

let
pythonEnv = python2.withPackages(ps: with ps; [ cheetah ]);
in python2.pkgs.buildPythonApplication rec {
name = "sickgear-${version}";
in stdenv.mkDerivation rec {
pname = "sickgear";
version = "0.17.5";

src = fetchFromGitHub {
Expand Down

1 comment on commit e0e7e86

@rembo10
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah cool - thanks so much for taking the time to look into this for me.

Please sign in to comment.