formatted

This commit is contained in:
atagen 2023-04-21 01:58:39 +10:00
parent ba1684c8d4
commit 737ca01e49
24 changed files with 468 additions and 411 deletions

View file

@ -1,5 +1,11 @@
{ stdenv, lib, fetchFromGitHub, linux-pam, libxcb, git }:
{
stdenv,
lib,
fetchFromGitHub,
linux-pam,
libxcb,
git,
}:
stdenv.mkDerivation rec {
pname = "ly";
version = "0.5.0+";
@ -12,9 +18,9 @@ stdenv.mkDerivation rec {
fetchSubmodules = true;
};
nativeBuildInputs = [ git ];
buildInputs = [ linux-pam libxcb ];
makeFlags = [ "FLAGS=-Wno-error=unused-result" ];
nativeBuildInputs = [git];
buildInputs = [linux-pam libxcb];
makeFlags = ["FLAGS=-Wno-error=unused-result"];
preBuildPhase = ''
mkdir -p ./data
@ -36,6 +42,6 @@ stdenv.mkDerivation rec {
description = "TUI display manager";
license = licenses.wtfpl;
homepage = "https://github.com/fairyglade/ly";
maintainers = [ ];
maintainers = [];
};
}