nixpkgs/pkgs/os-specific/linux/tuigreet/default.nix

27 lines
606 B
Nix
Raw Normal View History

2020-10-31 17:05:46 +01:00
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "tuigreet";
2021-06-28 17:18:58 +02:00
version = "0.5.0";
2020-10-31 17:05:46 +01:00
src = fetchFromGitHub {
owner = "apognu";
repo = pname;
rev = version;
2021-06-28 17:18:58 +02:00
sha256 = "sha256-Ip/GhpHgTgWFyCdujcCni1CLFDDirUbJuzCj8QiUsFc=";
2020-10-31 17:05:46 +01:00
};
2021-06-28 17:18:58 +02:00
cargoSha256 = "sha256-G/E/2wjeSY57bQJgrZYUA1sWUwtk5mRavmLwy1EgHRM=";
2020-10-31 17:05:46 +01:00
meta = with lib; {
description = "Graphical console greter for greetd";
homepage = "https://github.com/apognu/tuigreet";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ luc65r ];
platforms = platforms.linux;
};
}