mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
810515f876
Previously, manpages and subset of binaries were installed into $out/usr.
26 lines
670 B
Nix
26 lines
670 B
Nix
{ 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 ];
|
|
makeFlags = [
|
|
"DESTDIR=${placeholder "out"}"
|
|
"SBIN_DIR=/bin"
|
|
"USRSBIN_DIR=/bin"
|
|
"MAN_DIR=/share/man"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.joonet.de/lilo/";
|
|
description = "Linux bootloader";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ kaction ];
|
|
};
|
|
}
|