Merge pull request #229533 from colemickens/pr-linuxConsoleTools

linuxConsoleTools: 1.6.1 -> 1.8.1
This commit is contained in:
Mario Rodas 2023-08-09 22:08:32 -05:00 committed by GitHub
commit dc4dede7f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)"];