Merge pull request #229533 from colemickens/pr-linuxConsoleTools
linuxConsoleTools: 1.6.1 -> 1.8.1
This commit is contained in:
commit
dc4dede7f6
1 changed files with 5 additions and 4 deletions
|
@ -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)"];
|
||||
|
||||
|
|
Loading…
Reference in a new issue