quakespasm: 0.93.1 -> 0.93.2 (#128654)

This commit is contained in:
Mark Vainomaa 2021-06-30 02:01:13 +03:00 committed by GitHub
parent d23fa41ae4
commit 994671a259
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,12 +1,13 @@
{ lib, stdenv, SDL, fetchurl, gzip, libvorbis, libmad }: { lib, stdenv, SDL, fetchurl, gzip, libvorbis, libmad }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "quakespasm"; pname = "quakespasm";
majorVersion = "0.93"; majorVersion = "0.93";
version = "${majorVersion}.1"; version = "${majorVersion}.2";
src = fetchurl { src = fetchurl {
url = "mirror://sourceforge/quakespasm/quakespasm-${version}.tgz"; url = "mirror://sourceforge/quakespasm/quakespasm-${version}.tgz";
sha256 = "1bimv18f6rzhyjz78yvw2vqr5n0kdqbcqmq7cb3m951xgsxfcgpd"; sha256 = "0qm0j5drybvvq8xadfyppkpk3rxqsxbywzm6iwsjwdf0iia3gss5";
}; };
sourceRoot = "${pname}-${version}/Quake"; sourceRoot = "${pname}-${version}/Quake";
@ -24,7 +25,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true; enableParallelBuilding = true;
meta = { meta = with lib; {
description = "An engine for iD software's Quake"; description = "An engine for iD software's Quake";
homepage = "http://quakespasm.sourceforge.net/"; homepage = "http://quakespasm.sourceforge.net/";
longDescription = '' longDescription = ''
@ -36,7 +37,7 @@ stdenv.mkDerivation rec {
and smoother mouse input - though no CD support. and smoother mouse input - though no CD support.
''; '';
platforms = lib.platforms.linux; platforms = platforms.linux;
maintainers = [ lib.maintainers.m3tti ]; maintainers = with maintainers; [ m3tti ];
}; };
} }