mkinitcpio-nfs-utils: init at 0.3
This commit is contained in:
parent
5c56b7e526
commit
e7684e34ec
26
pkgs/os-specific/linux/mkinitcpio-nfs-utils/default.nix
Normal file
26
pkgs/os-specific/linux/mkinitcpio-nfs-utils/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv, fetchurl, xz }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "mkinitcpio-nfs-utils-0.3";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://sources.archlinux.org/other/mkinitcpio/${name}.tar.xz";
|
||||||
|
sha256 = "0fc93sfk41ycpa33083kyd7i4y00ykpbhj5qlw611bjghj4x946j";
|
||||||
|
# ugh, upstream...
|
||||||
|
name = "${name}.tar.gz";
|
||||||
|
};
|
||||||
|
|
||||||
|
makeFlags = [ "DESTDIR=$(out)" "bindir=/bin" ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
rm -rf $out/usr
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://archlinux.org/;
|
||||||
|
description = "ipconfig and nfsmount tools for root on NFS, ported from klibc";
|
||||||
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ abbradar ];
|
||||||
|
};
|
||||||
|
}
|
@ -10063,6 +10063,8 @@ let
|
|||||||
systemd = systemd.override { enableKDbus = true; };
|
systemd = systemd.override { enableKDbus = true; };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
mkinitcpio-nfs-utils = callPackage ../os-specific/linux/mkinitcpio-nfs-utils { };
|
||||||
|
|
||||||
module_init_tools = callPackage ../os-specific/linux/module-init-tools { };
|
module_init_tools = callPackage ../os-specific/linux/module-init-tools { };
|
||||||
|
|
||||||
aggregateModules = modules:
|
aggregateModules = modules:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user