mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
qodem: format with nixfmt-rfc-style
This commit is contained in:
parent
953b05c022
commit
956487c28b
@ -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 {
|
||||
pname = "qodem";
|
||||
@ -11,8 +21,16 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "NAdcTVmNrDa3rbsbxJxFoI7sz5NK5Uw+TbP+a1CdB+Q=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoconf automake ];
|
||||
buildInputs = [ ncurses SDL gpm miniupnpc ];
|
||||
nativeBuildInputs = [
|
||||
autoconf
|
||||
automake
|
||||
];
|
||||
buildInputs = [
|
||||
ncurses
|
||||
SDL
|
||||
gpm
|
||||
miniupnpc
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://qodem.sourceforge.net/";
|
||||
|
Loading…
Reference in New Issue
Block a user