ly: 0.2.1 -> 0.6.0

This commit is contained in:
Arjan Schrijver 2023-06-15 13:35:00 +02:00
parent 12adf07700
commit 4a40e22af2

View file

@ -1,19 +1,20 @@
{ stdenv, lib, fetchFromGitHub, linux-pam }: { stdenv, lib, fetchFromGitHub, git, linux-pam, libxcb }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "ly"; pname = "ly";
version = "0.2.1"; version = "0.6.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "cylgom"; owner = "fairyglade";
repo = "ly"; repo = "ly";
rev = version; rev = "v${version}";
sha256 = "16gjcrd4a6i4x8q8iwlgdildm7cpdsja8z22pf2izdm6rwfki97d"; hash = "sha256-78XD6DK9aQi8hITWJWnFZ3U9zWTcuw3vtRiU3Lhu7O4=";
fetchSubmodules = true; fetchSubmodules = true;
}; };
buildInputs = [ linux-pam ]; hardeningDisable = [ "all" ];
makeFlags = [ "FLAGS=-Wno-error" ]; nativeBuildInputs = [ git ];
buildInputs = [ libxcb linux-pam ];
installPhase = '' installPhase = ''
mkdir -p $out/bin mkdir -p $out/bin
@ -23,7 +24,8 @@ stdenv.mkDerivation rec {
meta = with lib; { meta = with lib; {
description = "TUI display manager"; description = "TUI display manager";
license = licenses.wtfpl; license = licenses.wtfpl;
homepage = "https://github.com/cylgom/ly"; homepage = "https://github.com/fairyglade/ly";
maintainers = [ maintainers.vidister ]; maintainers = [ maintainers.vidister ];
platforms = platforms.linux;
}; };
} }