nixpkgs/pkgs/tools/misc/i3minator/default.nix
Frederik Rietdijk 576740f7f2 i3minator: fix for python3
Fixes for when changing to Python 3. Haven't tested the program though.
2017-02-08 19:36:05 +01:00

33 lines
996 B
Nix

{ stdenv, fetchurl, pythonPackages, glibcLocales }:
pythonPackages.buildPythonApplication rec {
name = "i3minator-${version}";
version = "0.0.4";
src = fetchurl {
url = "https://github.com/carlesso/i3minator/archive/${version}.tar.gz";
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 = ''
A simple "workspace manager" for i3. It allows to quickly
manage workspaces defining windows and their layout. The
project is inspired by tmuxinator and uses i3-py.
'';
homepage = https://github.com/carlesso/i3minator;
license = stdenv.lib.licenses.wtfpl;
maintainers = with maintainers; [ domenkozar ];
platforms = stdenv.lib.platforms.linux;
};
}