Merge pull request #291392 from pkulak/create-filtile

river-filtile: init at 1.2.1
This commit is contained in:
Weijia Wang 2024-05-02 13:00:07 +02:00 committed by GitHub
commit 3bd17f61ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 38 additions and 0 deletions

@ -15867,6 +15867,13 @@
githubId = 4056630;
name = "Patrick Steinhardt";
};
pkulak = {
name = "Phil Kulak";
email = "phil@kulak.us";
matrix = "@phil:kulak.us";
github = "pkulak";
githubId = 502905;
};
plabadens = {
name = "Pierre Labadens";
email = "labadens.pierre+nixpkgs@gmail.com";

@ -0,0 +1,31 @@
{ 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 = "A layout manager for the River window manager";
homepage = "https://github.com/pkulak/filtile";
license = licenses.gpl3Only;
maintainers = with lib.maintainers; [ pkulak ];
mainProgram = "filtile";
};
}