tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
_7zz: remove `meta = with lib;`
éclairevoyant
2 years ago
176c7baa
2a8bd9ba
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
tools
archivers
7zz
default.nix
+4
-4
pkgs/tools/archivers/7zz/default.nix
···
120
};
121
};
122
123
-
meta = with lib; {
124
description = "Command line archiver utility";
125
homepage = "https://7-zip.org";
126
-
license = with licenses;
127
# 7zip code is largely lgpl2Plus
128
# CPP/7zip/Compress/LzfseDecoder.cpp is bsd3
129
[ lgpl2Plus /* and */ bsd3 ] ++
130
# and CPP/7zip/Compress/Rar* are unfree with the unRAR license restriction
131
# the unRAR compression code is disabled by default
132
lib.optionals enableUnfree [ unfree ];
133
-
maintainers = with maintainers; [ anna328p eclairevoyant jk peterhoeg ];
134
-
platforms = platforms.unix ++ platforms.windows;
135
mainProgram = "7zz";
136
};
137
})
···
120
};
121
};
122
123
+
meta = {
124
description = "Command line archiver utility";
125
homepage = "https://7-zip.org";
126
+
license = with lib.licenses;
127
# 7zip code is largely lgpl2Plus
128
# CPP/7zip/Compress/LzfseDecoder.cpp is bsd3
129
[ lgpl2Plus /* and */ bsd3 ] ++
130
# and CPP/7zip/Compress/Rar* are unfree with the unRAR license restriction
131
# the unRAR compression code is disabled by default
132
lib.optionals enableUnfree [ unfree ];
133
+
maintainers = with lib.maintainers; [ anna328p eclairevoyant jk peterhoeg ];
134
+
platforms = with lib.platforms; unix ++ windows;
135
mainProgram = "7zz";
136
};
137
})