depot/pkgs/by-name/ri/river-filtile/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

31 lines
682 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=";
};
cargoHash = "sha256-W5e19gzkZZjTTSZdww2x7M0LnR/gClQxMeAiDITO3HY=";
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";
};
}