lilo: init at 24.2
This commit is contained in:
parent
95726968d9
commit
997d98b86f
2 changed files with 22 additions and 0 deletions
20
pkgs/tools/misc/lilo/default.nix
Normal file
20
pkgs/tools/misc/lilo/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue