qodem: format with nixfmt-rfc-style

This commit is contained in:
Emily 2024-07-11 17:12:33 +01:00
parent 953b05c022
commit 956487c28b

View File

@ -1,4 +1,14 @@
{ lib, stdenv, fetchFromGitHub, autoconf, automake, ncurses, SDL, gpm, miniupnpc }: {
lib,
stdenv,
fetchFromGitHub,
autoconf,
automake,
ncurses,
SDL,
gpm,
miniupnpc,
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "qodem"; pname = "qodem";
@ -11,8 +21,16 @@ stdenv.mkDerivation rec {
sha256 = "NAdcTVmNrDa3rbsbxJxFoI7sz5NK5Uw+TbP+a1CdB+Q="; sha256 = "NAdcTVmNrDa3rbsbxJxFoI7sz5NK5Uw+TbP+a1CdB+Q=";
}; };
nativeBuildInputs = [ autoconf automake ]; nativeBuildInputs = [
buildInputs = [ ncurses SDL gpm miniupnpc ]; autoconf
automake
];
buildInputs = [
ncurses
SDL
gpm
miniupnpc
];
meta = with lib; { meta = with lib; {
homepage = "https://qodem.sourceforge.net/"; homepage = "https://qodem.sourceforge.net/";