mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
Merge pull request #256425 from nicegamer7/i3bar-river
i3bar-river: init at 0.1.3
This commit is contained in:
commit
e05e3f458d
@ -12387,6 +12387,12 @@
|
||||
fingerprint = "7BC1 77D9 C222 B1DC FB2F 0484 C061 089E FEBF 7A35";
|
||||
}];
|
||||
};
|
||||
nicegamer7 = {
|
||||
name = "Kermina Awad";
|
||||
email = "kerminaawad@gmail.com";
|
||||
github = "nicegamer7";
|
||||
githubId = 8083772;
|
||||
};
|
||||
nickcao = {
|
||||
name = "Nick Cao";
|
||||
email = "nickcao@nichi.co";
|
||||
|
32
pkgs/by-name/i3/i3bar-river/package.nix
Normal file
32
pkgs/by-name/i3/i3bar-river/package.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, rustPlatform
|
||||
, pkg-config
|
||||
, pango
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "i3bar-river";
|
||||
version = "0.1.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "MaxVerevkin";
|
||||
repo = "i3bar-river";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-c5R5V5J1ETBl6JAdNDSxa94OeMyqbTAUmJHJCo1B+WQ=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-D/WKv8rhb/ZGuVEZDp83PZxJydHbnZUQp+kVNlMBUCs=";
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user