mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-09 21:53:24 +00:00
![Adam Stephens](/assets/img/avatar_default.png)
https://github.com/apognu/tuigreet/releases/tag/0.9.0 Diff: https://github.com/apognu/tuigreet/compare/0.8.0...0.9.0
28 lines
642 B
Nix
28 lines
642 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "tuigreet";
|
|
version = "0.9.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "apognu";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-o1NPwZ2gvFxq988RhLz/6ucL4qb2dGtMdhNvAbQzIvg=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-dfzNRs3NOtHoWBq6tx3DjL2knNwsdxBmjqJbPzQJifQ=";
|
|
|
|
meta = with lib; {
|
|
description = "Graphical console greeter for greetd";
|
|
homepage = "https://github.com/apognu/tuigreet";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ luc65r ivar ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "tuigreet";
|
|
};
|
|
}
|