nixpkgs/pkgs/applications/display-managers/ly/default.nix

30 lines
632 B
Nix
Raw Normal View History

2018-11-08 20:40:00 +00:00
{ stdenv, lib, fetchFromGitHub, linux-pam }:
2021-01-01 13:46:40 +00:00
stdenv.mkDerivation rec {
pname = "ly";
2018-11-08 20:40:00 +00:00
version = "0.2.1";
src = fetchFromGitHub {
owner = "cylgom";
repo = "ly";
rev = version;
sha256 = "16gjcrd4a6i4x8q8iwlgdildm7cpdsja8z22pf2izdm6rwfki97d";
fetchSubmodules = true;
2021-01-01 13:46:40 +00:00
};
2018-11-08 20:40:00 +00:00
buildInputs = [ linux-pam ];
makeFlags = [ "FLAGS=-Wno-error" ];
installPhase = ''
mkdir -p $out/bin
2021-01-01 13:46:40 +00:00
cp bin/ly $out/bin
2018-11-08 20:40:00 +00:00
'';
meta = with lib; {
description = "TUI display manager";
license = licenses.wtfpl;
homepage = "https://github.com/cylgom/ly";
2018-11-08 20:40:00 +00:00
maintainers = [ maintainers.spacekookie ];
};
}