mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-03 18:54:42 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
34 lines
875 B
Nix
34 lines
875 B
Nix
{ expat, fetchFromGitHub, ffmpeg_3, fontconfig, freetype, libarchive, libjpeg
|
|
, libGLU, libGL, openal, pkgconfig, sfml, lib, stdenv, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "attract-mode";
|
|
version = "2.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mickelson";
|
|
repo = "attract";
|
|
rev = "v${version}";
|
|
sha256 = "16p369j0hanm0l2fiy6h9d9pn0f3qblcy9l39all6h7rfxnhp9ii";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
patchPhase = ''
|
|
sed -i "s|prefix=/usr/local|prefix=$out|" Makefile
|
|
'';
|
|
|
|
buildInputs = [
|
|
expat ffmpeg_3 fontconfig freetype libarchive libjpeg libGLU libGL openal sfml zlib
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A frontend for arcade cabinets and media PCs";
|
|
homepage = "http://attractmode.org";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ hrdinka ];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|