mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
i3minator: fix for python3
Fixes for when changing to Python 3. Haven't tested the program though.
This commit is contained in:
parent
c558a5d46c
commit
576740f7f2
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, pythonPackages }:
|
||||
{ stdenv, fetchurl, pythonPackages, glibcLocales }:
|
||||
|
||||
pythonPackages.buildPythonApplication rec {
|
||||
name = "i3minator-${version}";
|
||||
@ -9,8 +9,13 @@ pythonPackages.buildPythonApplication rec {
|
||||
sha256 = "11dn062788kwfs8k2ry4v8zr2gn40r6lsw770s9g2gvhl5n469dw";
|
||||
};
|
||||
|
||||
LC_ALL = "en_US.UTF-8";
|
||||
buildInputs = [ glibcLocales ];
|
||||
propagatedBuildInputs = [ pythonPackages.pyyaml pythonPackages.i3-py ];
|
||||
|
||||
# No tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "i3 project manager similar to tmuxinator";
|
||||
longDescription = ''
|
||||
|
Loading…
Reference in New Issue
Block a user