2016-02-19 12:12:11 +00:00
|
|
|
{ stdenv, fetchurl, buildPythonApplication, pythonPackages, python }:
|
2014-02-12 11:04:34 +00:00
|
|
|
|
2016-02-19 12:12:11 +00:00
|
|
|
buildPythonApplication rec {
|
2014-02-12 11:04:34 +00:00
|
|
|
name = "i3minator-${version}";
|
2014-02-23 15:57:37 +00:00
|
|
|
version = "0.0.4";
|
2014-02-12 11:04:34 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-02-23 15:57:37 +00:00
|
|
|
url = "https://github.com/carlesso/i3minator/archive/${version}.tar.gz";
|
|
|
|
sha256 = "11dn062788kwfs8k2ry4v8zr2gn40r6lsw770s9g2gvhl5n469dw";
|
2014-02-12 11:04:34 +00:00
|
|
|
};
|
|
|
|
|
2015-06-21 05:30:09 +00:00
|
|
|
propagatedBuildInputs = [ pythonPackages.pyyaml pythonPackages.i3-py ];
|
2014-02-12 11:04:34 +00:00
|
|
|
|
2014-02-12 18:22:44 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-02-12 11:04:34 +00:00
|
|
|
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;
|
2014-11-06 00:44:33 +00:00
|
|
|
license = stdenv.lib.licenses.wtfpl;
|
2014-02-12 18:22:44 +00:00
|
|
|
maintainers = with maintainers; [ iElectric ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2014-02-12 11:04:34 +00:00
|
|
|
};
|
2014-02-12 18:22:44 +00:00
|
|
|
|
2014-02-12 11:04:34 +00:00
|
|
|
}
|