Merge pull request #222509 from pinpox/river-luatile

river-luatile: init at v0.1.1

authored by

Ilan Joselevich and committed by
GitHub
ef51ad55 e54bcd42

+38
+36
pkgs/applications/misc/river-luatile/default.nix
···
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , pkg-config 5 + , luajit 6 + }: 7 + 8 + rustPlatform.buildRustPackage rec { 9 + pname = "river-luatile"; 10 + version = "0.1.1"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "MaxVerevkin"; 14 + repo = "river-luatile"; 15 + rev = "v${version}"; 16 + hash = "sha256-eZgoFbat7X/jh5udlNyIuTheBUCHpaVRbsojYLATO18="; 17 + }; 18 + 19 + cargoHash = "sha256-Vqyt5bL1lVhy/Wxd+zF7Wugvb7dW1N9Kq2TTFSaodnE="; 20 + 21 + nativeBuildInputs = [ 22 + pkg-config 23 + ]; 24 + 25 + buildInputs = [ 26 + luajit 27 + ]; 28 + 29 + meta = with lib; { 30 + description = "Write your own river layout generator in lua"; 31 + homepage = "https://github.com/MaxVerevkin/river-luatile"; 32 + license = licenses.gpl3Only; 33 + platforms = platforms.linux; 34 + maintainers = with maintainers; [ pinpox ]; 35 + }; 36 + }
+2
pkgs/top-level/all-packages.nix
··· 5574 zig = zig_0_9; 5575 }; 5576 5577 rmapi = callPackage ../applications/misc/remarkable/rmapi { }; 5578 5579 rmate-sh = callPackage ../tools/misc/rmate-sh { };
··· 5574 zig = zig_0_9; 5575 }; 5576 5577 + river-luatile = callPackage ../applications/misc/river-luatile{ }; 5578 + 5579 rmapi = callPackage ../applications/misc/remarkable/rmapi { }; 5580 5581 rmate-sh = callPackage ../tools/misc/rmate-sh { };