aboutsummaryrefslogtreecommitdiff
path: root/nix/busybox.nix
blob: 9993e2d001216c0eac0dd0295627963457795bac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ stdenv, fetchgit }

stdenv.mkDerivation {
	name = "busybox-yerba";
	src = fetchgit {
		url = "https://git.busybox.net/busybox";
		rev = "1_36_1";
		hash = "";
	};
	preConfigure = ''
		cp ${./busybox_config} .config
	'';
	installPhase = {
		make install CONFIG_PREFIX=$out
	};
}