river-filtile: init at 1.1.0

This commit is contained in:
Phil Kulak 2024-02-25 14:14:30 -08:00
parent 647adf75d0
commit 933a5a1c4a
No known key found for this signature in database

View File

@ -0,0 +1,31 @@
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
}:
rustPlatform.buildRustPackage rec {
pname = "river-filtile";
version = "1.1.0";
src = fetchFromGitHub {
owner = "pkulak";
repo = "filtile";
rev = "v${version}";
hash = "sha256-51lrmti5/fTJpl0eF4BRvosT76wWfWdYI1yJJahi0Aw=";
};
cargoHash = "sha256-KWapy2p9kVzgx5oqCo0+7DNaVlDaHYHNi8Mra2I13DQ=";
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";
};
}