Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lemurs: init at 0.3.1 #246287

Merged
merged 2 commits into from
Aug 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7724,6 +7724,13 @@
githubId = 1608697;
name = "Jens Binkert";
};
jeremiahs = {
JeremiahSecrist marked this conversation as resolved.
Show resolved Hide resolved
email = "[email protected]";
github = "JeremiahSecrist";
githubId = 26032621;
matrix = "@jeremiahs:matrix.org";
name = "Jeremiah Secrist";
};
jeremyschlatter = {
email = "[email protected]";
github = "jeremyschlatter";
Expand Down
33 changes: 33 additions & 0 deletions pkgs/applications/display-managers/lemurs/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
fetchFromGitHub,
lib,
linux-pam,
rustPlatform,
}:
rustPlatform.buildRustPackage rec {
pname = "lemurs";
version = "0.3.1";

src = fetchFromGitHub {
owner = "coastalwhite";
repo = "lemurs";
rev = "v${version}";
hash = "sha256-6mNSLEWafw8yDGnemOhEiK8FTrBC+6+PuhlbOXTGmN0=";
};

cargoHash = "sha256-nfUBC1HSs7PcIbD7MViJFkfFAPda83XbAupNeShfwOs=";

# Fixes a lock issue
preConfigure = "cargo update --offline";

buildInputs = [
linux-pam
];

meta = with lib; {
description = "A customizable TUI display/login manager written in Rust";
homepage = "https://github.com/coastalwhite/lemurs";
license = with licenses; [asl20 mit];
maintainers = with maintainers; [jeremiahs];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -34967,6 +34967,8 @@ with pkgs;

insync = callPackage ../applications/networking/insync { };

lemurs = callPackage ../applications/display-managers/lemurs { };
JeremiahSecrist marked this conversation as resolved.
Show resolved Hide resolved

libstrangle = callPackage ../tools/X11/libstrangle {
stdenv = stdenv_32bit;
};
Expand Down