Merge pull request #182537 from dit7ya/autotiling-rs

autotiling-rs: init at 0.1.3
This commit is contained in:
Sandro 2022-07-23 21:10:17 +02:00 committed by GitHub
commit 00977a9804
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View File

@ -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 ];
};
}

View File

@ -34498,6 +34498,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 { };