mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 04:02:10 +00:00
33 lines
746 B
Nix
33 lines
746 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, pkg-config
|
|
, pango
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "i3bar-river";
|
|
version = "0.1.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MaxVerevkin";
|
|
repo = "i3bar-river";
|
|
rev = "v${version}";
|
|
hash = "sha256-wtyC8cGK408KZYpWniW2y4XI1ScTSBZJJlUt6b2Z5KA=";
|
|
};
|
|
|
|
cargoHash = "sha256-PdSMDsV3yFy3kSNS6OBxFdrZsIn70gXOTd2AhyU4a9o=";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ pango ];
|
|
|
|
meta = with lib; {
|
|
description = "A 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;
|
|
};
|
|
}
|