Commit c37abc49 authored by kyehn's avatar kyehn
Browse files

unp: remove with lib

parent 39755de0
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -57,11 +57,11 @@ stdenv.mkDerivation (finalAttrs: {
    runHook postInstall
  '';

  meta = with lib; {
  meta = {
    description = "Command line tool for unpacking archives easily";
    homepage = "https://packages.qa.debian.org/u/unp.html";
    license = with licenses; [ gpl2Only ];
    maintainers = [ maintainers.timor ];
    platforms = platforms.all;
    license = with lib.licenses; [ gpl2Only ];
    maintainers = [ lib.maintainers.timor ];
    platforms = lib.platforms.all;
  };
})