depot/third_party/nixpkgs/pkgs/by-name/ri/river-filtile/package.nix
Luke Granger-Brown f92e137cfb
Some checks failed
/ combine-systems (push) Blocked by required conditions
/ build (x86_64-linux) (push) Failing after 11m44s
/ build (aarch64-linux) (push) Failing after 11m50s
/ build (push) Failing after 16m42s
Merge commit '1e2ed035f4bebc9adad02b365508ad96f7df87c1' into HEAD
2025-03-02 02:23:32 +00:00

33 lines
718 B
Nix

{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
}:
rustPlatform.buildRustPackage rec {
pname = "river-filtile";
version = "1.2.1";
src = fetchFromGitHub {
owner = "pkulak";
repo = "filtile";
rev = "v${version}";
hash = "sha256-wBU4CX6KGnTvrBsXvFAlRrvDqvHHbAlVkDqTCJx90G8=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-dmRUcjlmnheCG5drEcJIZbo7haDiu7Qphs6T92V8v/o=";
nativeBuildInputs = [
pkg-config
];
meta = with lib; {
description = "Layout manager for the River window manager";
homepage = "https://github.com/pkulak/filtile";
license = licenses.gpl3Only;
maintainers = with lib.maintainers; [ pkulak ];
mainProgram = "filtile";
};
}