ly: 0.2.1 -> 0.6.0

+10 -8
+10 -8
pkgs/applications/display-managers/ly/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, linux-pam }: 2 3 stdenv.mkDerivation rec { 4 pname = "ly"; 5 - version = "0.2.1"; 6 7 src = fetchFromGitHub { 8 - owner = "cylgom"; 9 repo = "ly"; 10 - rev = version; 11 - sha256 = "16gjcrd4a6i4x8q8iwlgdildm7cpdsja8z22pf2izdm6rwfki97d"; 12 fetchSubmodules = true; 13 }; 14 15 - buildInputs = [ linux-pam ]; 16 - makeFlags = [ "FLAGS=-Wno-error" ]; 17 18 installPhase = '' 19 mkdir -p $out/bin ··· 23 meta = with lib; { 24 description = "TUI display manager"; 25 license = licenses.wtfpl; 26 - homepage = "https://github.com/cylgom/ly"; 27 maintainers = [ maintainers.vidister ]; 28 }; 29 }
··· 1 + { stdenv, lib, fetchFromGitHub, git, linux-pam, libxcb }: 2 3 stdenv.mkDerivation rec { 4 pname = "ly"; 5 + version = "0.6.0"; 6 7 src = fetchFromGitHub { 8 + owner = "fairyglade"; 9 repo = "ly"; 10 + rev = "v${version}"; 11 + hash = "sha256-78XD6DK9aQi8hITWJWnFZ3U9zWTcuw3vtRiU3Lhu7O4="; 12 fetchSubmodules = true; 13 }; 14 15 + hardeningDisable = [ "all" ]; 16 + nativeBuildInputs = [ git ]; 17 + buildInputs = [ libxcb linux-pam ]; 18 19 installPhase = '' 20 mkdir -p $out/bin ··· 24 meta = with lib; { 25 description = "TUI display manager"; 26 license = licenses.wtfpl; 27 + homepage = "https://github.com/fairyglade/ly"; 28 maintainers = [ maintainers.vidister ]; 29 + platforms = platforms.linux; 30 }; 31 }