Merge pull request #129872 from KAction/lilo

lilo: init at 24.2
This commit is contained in:
Sandro 2021-07-12 03:53:19 +02:00 committed by GitHub
commit 05a0c7ee13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;