Unverified Commit a1e5499e authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

treewide: remove with lib Part 2 (#413589)

parents 71f2aaec e61bb303
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -34,11 +34,11 @@ buildGoModule rec {
    "-w"
  ];

  meta = with lib; {
  meta = {
    description = "Go-based tools for modifying UEFI firmware";
    homepage = "https://github.com/linuxboot/fiano";
    changelog = "https://github.com/linuxboot/fiano/blob/v${version}/RELEASES.md";
    license = licenses.bsd3;
    maintainers = [ maintainers.jmbaur ];
    license = lib.licenses.bsd3;
    maintainers = [ lib.maintainers.jmbaur ];
  };
}
+4 −4
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {

  doCheck = true;

  meta = with lib; {
  meta = {
    description = "Command line pastebin for sharing terminal output";
    longDescription = ''
      Fiche is a command line pastebin server for sharing terminal output.
@@ -34,9 +34,9 @@ stdenv.mkDerivation rec {

    homepage = "https://github.com/solusipse/fiche";
    changelog = "https://github.com/solusipse/fiche/releases/tag/${version}";
    license = licenses.mit;
    maintainers = [ maintainers.pinpox ];
    platforms = platforms.all;
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.pinpox ];
    platforms = lib.platforms.all;
    mainProgram = "fiche";
  };
}
+3 −3
Original line number Diff line number Diff line
@@ -27,12 +27,12 @@ python3.pkgs.buildPythonApplication rec {

  pythonImportsCheck = [ "fierce" ];

  meta = with lib; {
  meta = {
    description = "DNS reconnaissance tool for locating non-contiguous IP space";
    homepage = "https://github.com/mschwager/fierce";
    changelog = "https://github.com/mschwager/fierce/blob/${version}/CHANGELOG.md";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ c0bw3b ];
    license = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [ c0bw3b ];
    mainProgram = "fierce";
  };
}
+3 −3
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ rustPlatform.buildRustPackage rec {
  # There is a failure while the binary is checked
  doCheck = false;

  meta = with lib; {
  meta = {
    description = "Host-based file integrity monitoring tool";
    longDescription = ''
      FIM is a File Integrity Monitoring tool that tracks any event over your
@@ -56,8 +56,8 @@ rustPlatform.buildRustPackage rec {
    '';
    homepage = "https://github.com/Achiefs/fim";
    changelog = "https://github.com/Achiefs/fim/releases/tag/v${version}";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ fab ];
    license = lib.licenses.gpl3Only;
    maintainers = with lib.maintainers; [ fab ];
    mainProgram = "fim";
  };
}
+3 −3
Original line number Diff line number Diff line
@@ -38,12 +38,12 @@ rustPlatform.buildRustPackage rec {
    installManPage findomain.1
  '';

  meta = with lib; {
  meta = {
    description = "Fastest and cross-platform subdomain enumerator";
    homepage = "https://github.com/Findomain/Findomain";
    changelog = "https://github.com/Findomain/Findomain/releases/tag/${version}";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [
    license = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [
      Br1ght0ne
      figsoda
    ];
Loading