river-luatile: init at v0.1.1

This commit is contained in:
Pablo Ovelleiro Corral 2023-03-22 10:47:00 +01:00
parent 5b194fc13b
commit 532a2b35ed
Signed by untrusted user: pinpox
GPG key ID: 29E9A6ED72CCB334
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, luajit
}:
rustPlatform.buildRustPackage rec {
pname = "river-luatile";
version = "0.1.1";
src = fetchFromGitHub {
owner = "MaxVerevkin";
repo = "river-luatile";
rev = "v${version}";
hash = "sha256-eZgoFbat7X/jh5udlNyIuTheBUCHpaVRbsojYLATO18=";
};
cargoHash = "sha256-Vqyt5bL1lVhy/Wxd+zF7Wugvb7dW1N9Kq2TTFSaodnE=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
luajit
];
meta = with lib; {
description = "Write your own river layout generator in lua";
homepage = "https://github.com/MaxVerevkin/river-luatile";
license = licenses.gpl3Only;
platforms = platforms.linux;
maintainers = with maintainers; [ pinpox ];
};
}

View file

@ -5562,6 +5562,8 @@ with pkgs;
zig = zig_0_9;
};
river-luatile = callPackage ../applications/misc/river-luatile{ };
rmapi = callPackage ../applications/misc/remarkable/rmapi { };
rmate-sh = callPackage ../tools/misc/rmate-sh { };