autotiling-rs: init at 0.1.3
This commit is contained in:
parent
9a56cdb0c9
commit
83e1754b23
2 changed files with 25 additions and 0 deletions
23
pkgs/misc/autotiling-rs/default.nix
Normal file
23
pkgs/misc/autotiling-rs/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue