forked from mirrors/nixpkgs
river-luatile: init at v0.1.1
This commit is contained in:
parent
5b194fc13b
commit
532a2b35ed
36
pkgs/applications/misc/river-luatile/default.nix
Normal file
36
pkgs/applications/misc/river-luatile/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue