linuxConsoleTools: 1.6.1 -> 1.8.1

This commit is contained in:
Cole Mickens 2022-12-26 15:59:48 -08:00
parent 69e6642e49
commit 52c41d4007
No known key found for this signature in database
GPG Key ID: B475C2955744A019

View File

@ -1,15 +1,16 @@
{ lib, stdenv, fetchurl, SDL }:
{ lib, stdenv, fetchurl, pkg-config, SDL, SDL2 }:
stdenv.mkDerivation rec {
pname = "linuxconsoletools";
version = "1.6.1";
version = "1.8.1";
src = fetchurl {
url = "mirror://sourceforge/linuxconsole/${pname}-${version}.tar.bz2";
sha256 = "0d2r3j916fl2y7pk1y82b9fvbr10dgs1gw7rqwzfpispdidb1mp9";
sha256 = "sha256-TaKXRceCt9sY9fN8Sed78WMSHdN2Hi/HY2+gy/NcJFY=";
};
buildInputs = [ SDL ];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ SDL SDL2 ];
makeFlags = [ "DESTDIR=$(out)"];