1{ lib
2, rustPlatform
3, fetchFromSourcehut
4}:
5
6rustPlatform.buildRustPackage rec {
7 pname = "dlm";
8 version = "2020-01-07";
9
10 src = fetchFromSourcehut {
11 owner = "~kennylevinsen";
12 repo = pname;
13 rev = "6b0e11c4f453b1a4d7a32019227539a980b7ce66";
14 sha256 = "1r3w7my0g3v2ya317qnvjx8wnagjahpj7yx72a65hf2pjbf5x42p";
15 };
16
17 cargoSha256 = "01a8k60qnx2pgxb2adgw30c2hjb60w6230khm5hyqgmp7z4rm8k8";
18
19 meta = with lib; {
20 description = "A stupid simple graphical login manager";
21 homepage = "https://git.sr.ht/~kennylevinsen/dlm";
22 license = licenses.gpl3Plus;
23 maintainers = with maintainers; [ luc65r ];
24 platforms = platforms.linux;
25 };
26}