autotiling-rs: init at 0.1.3

This commit is contained in:
Mostly Void 2022-07-23 10:33:31 +05:30
parent 9a56cdb0c9
commit 83e1754b23
No known key found for this signature in database
GPG Key ID: E2B7342D0CAA82C2
2 changed files with 25 additions and 0 deletions

@ -0,0 +1,23 @@
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "autotiling-rs";
version = "0.1.3";
src = fetchFromGitHub {
owner = "ammgws";
repo = pname;
rev = "v${version}";
sha256 = "sha256-LQbmF2M6pWa0QEbKF770x8TFLMGrJeq5HnXHvLrDDPA=";
};
cargoHash = "sha256-wot5GKBA2TBrA/jnWD0eypPRqUodmk/TJlYJMl3/gm4=";
meta = with lib; {
description = "Autotiling for sway (and possibly i3)";
homepage = "https://github.com/ammgws/autotiling-rs";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ dit7ya ];
};
}

@ -34480,6 +34480,8 @@ with pkgs;
autotiling = python3Packages.callPackage ../misc/autotiling { };
autotiling-rs = callPackage ../misc/autotiling-rs { };
avell-unofficial-control-center = python3Packages.callPackage ../applications/misc/avell-unofficial-control-center { };
beep = callPackage ../misc/beep { };