lilo: init at 24.2

This commit is contained in:
Dmitry Bogatov 2021-07-10 15:03:42 -04:00
parent 95726968d9
commit 997d98b86f
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ stdenv, lib, fetchurl, dev86, sharutils }:
stdenv.mkDerivation rec {
pname = "lilo";
version = "24.2";
src = fetchurl {
url = "https://www.joonet.de/lilo/ftp/sources/${pname}-${version}.tar.gz";
hash = "sha256-4VjxneRWDJNevgUHwht5v/F2GLkjDYB2/oxf/5/b1bE=";
};
nativeBuildInputs = [ dev86 sharutils ];
DESTDIR = placeholder "out";
meta = with lib; {
homepage = "https://www.joonet.de/lilo/";
description = "Linux bootloader";
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = with maintainers; [ kaction ];
};
}

View file

@ -952,6 +952,8 @@ in
lifecycled = callPackage ../tools/misc/lifecycled { };
lilo = callPackage ../tools/misc/lilo { };
lilyterm = callPackage ../applications/terminal-emulators/lilyterm {
inherit (gnome2) vte;
gtk = gtk2;