nixpkgs/pkgs/by-name/ri/river-filtile/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
682 B
Nix
Raw Normal View History

2024-02-25 22:14:30 +00:00
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
}:
rustPlatform.buildRustPackage rec {
pname = "river-filtile";
2024-04-09 03:24:06 +00:00
version = "1.2.1";
2024-02-25 22:14:30 +00:00
src = fetchFromGitHub {
owner = "pkulak";
repo = "filtile";
rev = "v${version}";
2024-04-09 03:24:06 +00:00
hash = "sha256-wBU4CX6KGnTvrBsXvFAlRrvDqvHHbAlVkDqTCJx90G8=";
2024-02-25 22:14:30 +00:00
};
2024-04-09 03:24:06 +00:00
cargoHash = "sha256-W5e19gzkZZjTTSZdww2x7M0LnR/gClQxMeAiDITO3HY=";
2024-02-25 22:14:30 +00:00
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";
};
}