159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
32 lines
745 B
Nix
32 lines
745 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, pkg-config
|
|
, pango
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "i3bar-river";
|
|
version = "0.1.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MaxVerevkin";
|
|
repo = "i3bar-river";
|
|
rev = "v${version}";
|
|
hash = "sha256-CZdulSe4qPb9ZOyH26dMVCiv/Y2T/u8fLohK8VeS1Ao=";
|
|
};
|
|
|
|
cargoHash = "sha256-K+fDdAWrAKLQSMIMtEavhk7gIHINmL2eJLBhDLc1Jtg=";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ pango ];
|
|
|
|
meta = with lib; {
|
|
description = "Port of i3bar for river";
|
|
homepage = "https://github.com/MaxVerevkin/i3bar-river";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ nicegamer7 ];
|
|
mainProgram = "i3bar-river";
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|