2023-10-09 19:29:22 +00:00
|
|
|
{ lib, fetchFromGitLab, unstableGitUpdater, rustPlatform }:
|
2021-05-03 20:48:10 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "kile-wl";
|
2024-05-15 15:35:15 +00:00
|
|
|
version = "2.1-unstable-2023-07-23";
|
2021-05-03 20:48:10 +00:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "snakedye";
|
|
|
|
repo = "kile";
|
2023-10-09 19:29:22 +00:00
|
|
|
rev = "c24208761d04e0a74d203fc1dcd2f7fed68da388";
|
2024-07-27 06:49:29 +00:00
|
|
|
hash = "sha256-4iclNVd7nm6LkgvsHwWaWyi1bZL/A+bbT5OSXn70bLs=";
|
2021-05-03 20:48:10 +00:00
|
|
|
};
|
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
passthru.updateScript = unstableGitUpdater {
|
|
|
|
url = "https://gitlab.com/snakedye/kile.git";
|
2024-05-15 15:35:15 +00:00
|
|
|
tagPrefix = "v";
|
2021-06-28 23:13:55 +00:00
|
|
|
};
|
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
cargoLock = {
|
|
|
|
lockFile = ./Cargo.lock;
|
|
|
|
outputHashes = {
|
|
|
|
"kilexpr-0.1.0" = "sha256-Bw6vYtzhheAJ8NLQtr3gLjZ9/5ajuABURRYDnVF9W1Y=";
|
|
|
|
};
|
|
|
|
};
|
2021-05-03 20:48:10 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Tiling layout generator for river";
|
2021-05-03 20:48:10 +00:00
|
|
|
homepage = "https://gitlab.com/snakedye/kile";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux; # It's meant for river, a wayland compositor
|
2024-01-02 11:29:13 +00:00
|
|
|
maintainers = with maintainers; [ moni ];
|
2021-05-20 23:08:51 +00:00
|
|
|
mainProgram = "kile";
|
2021-05-03 20:48:10 +00:00
|
|
|
};
|
|
|
|
}
|