lol
at 22.05-pre 20 lines 577 B view raw
1{ stdenv, lib, fetchurl, dev86, sharutils }: 2 3stdenv.mkDerivation rec { 4 pname = "lilo"; 5 version = "24.2"; 6 src = fetchurl { 7 url = "https://www.joonet.de/lilo/ftp/sources/${pname}-${version}.tar.gz"; 8 hash = "sha256-4VjxneRWDJNevgUHwht5v/F2GLkjDYB2/oxf/5/b1bE="; 9 }; 10 nativeBuildInputs = [ dev86 sharutils ]; 11 DESTDIR = placeholder "out"; 12 13 meta = with lib; { 14 homepage = "https://www.joonet.de/lilo/"; 15 description = "Linux bootloader"; 16 license = licenses.bsd3; 17 platforms = platforms.linux; 18 maintainers = with maintainers; [ kaction ]; 19 }; 20}