tv pkgs: move dhcpcd to override
This commit is contained in:
parent
066dba941a
commit
63654bf03a
|
@ -22,12 +22,6 @@ fix
|
||||||
//
|
//
|
||||||
|
|
||||||
{
|
{
|
||||||
dhcpcd = overrideDerivation super.dhcpcd (old: {
|
|
||||||
configureFlags = old.configureFlags ++ [
|
|
||||||
"--dbdir=/var/lib/dhcpcd"
|
|
||||||
];
|
|
||||||
});
|
|
||||||
|
|
||||||
gitAndTools = super.gitAndTools // {
|
gitAndTools = super.gitAndTools // {
|
||||||
inherit (self) diff-so-fancy;
|
inherit (self) diff-so-fancy;
|
||||||
};
|
};
|
||||||
|
|
7
tv/5pkgs/override/dhcpcd.nix
Normal file
7
tv/5pkgs/override/dhcpcd.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
self: super:
|
||||||
|
|
||||||
|
self.lib.overrideDerivation super.dhcpcd (old: {
|
||||||
|
configureFlags = old.configureFlags ++ [
|
||||||
|
"--dbdir=/var/lib/dhcpcd"
|
||||||
|
];
|
||||||
|
})
|
Loading…
Reference in a new issue