autotiling: 1.1 -> 1.5
This commit is contained in:
parent
9b4ee111e6
commit
8c80185fde
1 changed files with 8 additions and 6 deletions
|
@ -1,12 +1,14 @@
|
|||
{ lib, buildPythonApplication, fetchPypi, i3ipc, importlib-metadata }:
|
||||
{ lib, buildPythonApplication, fetchFromGitHub, i3ipc, importlib-metadata }:
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "autotiling";
|
||||
version = "1.1";
|
||||
version = "1.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0hwvy9bxwv9fakqqiyrkmpckxgm0z85c240p84ibdhja9sm086v0";
|
||||
src = fetchFromGitHub {
|
||||
owner = "nwg-piotr";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0ih8yd1gankjxn88gd88vxs6f1cniyi04z25jz4nsgqi9snz65v4";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ i3ipc importlib-metadata ];
|
||||
|
@ -16,7 +18,7 @@ buildPythonApplication rec {
|
|||
homepage = "https://github.com/nwg-piotr/autotiling";
|
||||
description = "Script for sway and i3 to automatically switch the horizontal / vertical window split orientation";
|
||||
license = licenses.gpl3Plus;
|
||||
platforms= platforms.linux;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ artturin ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue