1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 20:21:14 +00:00
nixpkgs/pkgs/games/vapor/default.nix
Profpatsch 4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
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
2021-01-11 10:38:22 +01:00

62 lines
1.5 KiB
Nix

{ lib, stdenv, fetchurl, love, lua, makeWrapper, makeDesktopItem }:
let
pname = "vapor";
version = "0.2.3";
commitid = "dbf509f";
icon = fetchurl {
url = "http://vapor.love2d.org/sites/default/files/vapT240x90.png";
sha256 = "1xlra74lpm1y54z6zm6is0gldkswp3wdw09m6a306ch0xjf3f87f";
};
desktopItem = makeDesktopItem {
name = "Vapor";
exec = pname;
icon = icon;
comment = "LÖVE Distribution Client";
desktopName = "Vapor";
genericName = "vapor";
categories = "Game;";
};
in
stdenv.mkDerivation {
name = "${pname}-${version}";
src = fetchurl {
url =
"https://github.com/josefnpat/${pname}/releases/download/${version}/${pname}_${commitid}.love";
sha256 = "0w2qkrrkzfy4h4jld18apypmbi8a8r89y2l11axlv808i2rg68fk";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ lua love ];
phases = "installPhase";
installPhase =
''
mkdir -p $out/bin
mkdir -p $out/share
cp -v $src $out/share/${pname}.love
makeWrapper ${love}/bin/love $out/bin/${pname} --add-flags $out/share/${pname}.love
chmod +x $out/bin/${pname}
mkdir -p $out/share/applications
ln -s ${desktopItem}/share/applications/* $out/share/applications/
'';
meta = with lib; {
description = "LÖVE Distribution Client allowing access to many games";
platforms = platforms.linux;
license = licenses.zlib;
maintainers = with maintainers; [ leenaars ];
downloadPage = "http://vapor.love2d.org/";
};
}