Skip to content

Commit 57966db

Browse files
authored
freebsd.mkDerivation: fix meta when custom meta is set (#550620)
2 parents da8aa4c + 8adf0e4 commit 57966db

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

pkgs/os-specific/bsd/freebsd/pkgs/mkDerivation.nix

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,10 @@ lib.makeOverridable (
122122
installPhase = "includesPhase";
123123
dontBuild = true;
124124
}
125-
// (removeAttrs attrs [ "env" ])
125+
// (removeAttrs attrs [
126+
"env"
127+
"meta"
128+
])
126129
// {
127130
patches =
128131
(lib.optionals (attrs.autoPickPatches or true) (

0 commit comments

Comments
 (0)