Merge pull request #161625 from fortuneteller2k/i3a

i3a: init at 2.0.1
This commit is contained in:
Guillaume Girol 2022-03-06 21:57:14 +00:00 committed by GitHub
commit 8dd5f28691
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 0 deletions

21
pkgs/misc/i3a/default.nix Normal file
View File

@ -0,0 +1,21 @@
{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "i3a";
version = "2.0.1";
src = python3Packages.fetchPypi {
inherit pname version;
hash = "sha256-2k1HYtgJ76qXLvX6RmOSKtMMg+K722n8U9YmBANvQvE=";
};
nativeBuildInputs = [ python3Packages.setuptools-scm ];
propagatedBuildInputs = [ python3Packages.i3ipc ];
meta = with lib; {
homepage = "https://git.goral.net.pl/mgoral/i3a";
description = "A set of scripts used for automation of i3 and sway window manager layouts";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ fortuneteller2k ];
};
}

View File

@ -33621,6 +33621,8 @@ with pkgs;
DisnixWebService = callPackage ../tools/package-management/disnix/DisnixWebService { };
i3a = callPackage ../misc/i3a { };
lkproof = callPackage ../tools/typesetting/tex/lkproof { };
lice = python3Packages.callPackage ../tools/misc/lice {};