mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
3df6bb2c85
Conflicts: pkgs/applications/blockchains/polkadot/default.nix
37 lines
796 B
Nix
37 lines
796 B
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
linux-pam,
|
|
rustPlatform,
|
|
testers,
|
|
lemurs,
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "lemurs";
|
|
version = "0.3.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "coastalwhite";
|
|
repo = "lemurs";
|
|
rev = "v${version}";
|
|
hash = "sha256-YDopY+wdWlVL2X+/wc1tLSSqFclAkt++JXMK3VodD4s=";
|
|
};
|
|
|
|
cargoHash = "sha256-uuHPJe+1VsnLRGbHtgTMrib6Tk359cwTDVfvtHnDToo=";
|
|
|
|
buildInputs = [
|
|
linux-pam
|
|
];
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = lemurs;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Customizable TUI display/login manager written in Rust";
|
|
homepage = "https://github.com/coastalwhite/lemurs";
|
|
license = with licenses; [asl20 mit];
|
|
maintainers = with maintainers; [jeremiahs];
|
|
mainProgram = "lemurs";
|
|
};
|
|
}
|