Skip to content

Commit

Permalink
cligh: switch to Python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
jtojnar committed Dec 20, 2017
1 parent 8a93532 commit 53acbe8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions pkgs/development/tools/github/cligh/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, pythonPackages }:
{ stdenv, fetchFromGitHub, buildPythonApplication, pyxdg, PyGithub }:

pythonPackages.buildPythonApplication rec {
buildPythonApplication rec {
name = "cligh-${version}";
version = "0.3";

Expand All @@ -13,7 +13,7 @@ pythonPackages.buildPythonApplication rec {
sha256 = "0d1fd78rzl2n75xpmy1gnxh1shvcs4qm0j4qqszqvfriwkg2flxn";
};

propagatedBuildInputs = with pythonPackages; [ pyxdg PyGithub ];
propagatedBuildInputs = [ pyxdg PyGithub ];

meta = with stdenv.lib; {
homepage = http://the-brannons.com/software/cligh.html;
Expand Down
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Expand Up @@ -14266,7 +14266,7 @@ with pkgs;

clfswm = callPackage ../applications/window-managers/clfswm { };

cligh = callPackage ../development/tools/github/cligh {};
cligh = python3Packages.callPackage ../development/tools/github/cligh {};

clipgrab = callPackage ../applications/video/clipgrab { };

Expand Down

0 comments on commit 53acbe8

Please sign in to comment.