mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
7c66fb1ec5
They said they haven't used Nix in a while and is not interested in maintaining cemu-ti (presumably other packages too), so I asked to take over his role. I removed luc65r from the meta.maintainers attribtes, and adopted the packages I wanted to adopt. I chose to adopt the TI graphing calculator-related packages as I am part of Cemetech.
41 lines
905 B
Nix
41 lines
905 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromSourcehut
|
|
, autoPatchelfHook
|
|
, gcc-unwrapped
|
|
, wayland
|
|
, libxkbcommon
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "wlgreet";
|
|
version = "0.5.0";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~kennylevinsen";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-TQTHFBOTxtSuzrAG4cjZ9oirl80xc0rPdYeLJ0t39DQ=";
|
|
};
|
|
|
|
cargoHash = "sha256-+YGhfEq2RltPq5oLLh1h+vGphDpoGZNVdvzko3P1iUQ=";
|
|
|
|
nativeBuildInputs = [ autoPatchelfHook ];
|
|
buildInputs = [ gcc-unwrapped ];
|
|
|
|
runtimeDependencies = map lib.getLib [
|
|
gcc-unwrapped
|
|
wayland
|
|
libxkbcommon
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Raw wayland greeter for greetd, to be run under sway or similar";
|
|
mainProgram = "wlgreet";
|
|
homepage = "https://git.sr.ht/~kennylevinsen/wlgreet";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|