Unverified Commit c999f387 authored by Michael Daniels's avatar Michael Daniels Committed by GitHub
Browse files

various: take maintenance over more figsoda's Rust packages (#496952)

parents 60e7e554 2a8be1f1
Loading
Loading
Loading
Loading
+13 −5
Original line number Diff line number Diff line
@@ -2,24 +2,32 @@
  lib,
  rustPlatform,
  fetchCrate,
  versionCheckHook,
  nix-update-script,
}:

rustPlatform.buildRustPackage (finalAttrs: {
  pname = "csv2svg";
  version = "0.1.9";
  version = "0.2.3";

  src = fetchCrate {
    inherit (finalAttrs) pname version;
    hash = "sha256-3VebLFkeJLK97jqoPXt4Wt6QTR0Zyu+eQV9oaLBSeHE=";
    pname = "csv2svg";
    inherit (finalAttrs) version;
    hash = "sha256-DNnMYpzQTzGVsAp0YScqiO260mwShVTE/cwXkU/Q5IE=";
  };

  cargoHash = "sha256-RwpRxSD/oRAYD1udrHt3fy/SrrNUTVdGf+CdzQnJZ2U=";
  cargoHash = "sha256-f6ZMCkMVkPi4XfzRUZq7JDhCBz57K58UqY69T9mNzrU=";

  doInstallCheck = true;
  nativeInstallCheckInputs = [ versionCheckHook ];

  passthru.updateScript = nix-update-script { };

  meta = {
    description = "Take a csv as input and outputs svg";
    homepage = "https://github.com/Canop/csv2svg";
    license = lib.licenses.mit;
    maintainers = [ ];
    maintainers = [ lib.maintainers.progrm_jarvis ];
    mainProgram = "csv2svg";
  };
})
+9 −2
Original line number Diff line number Diff line
@@ -6,6 +6,8 @@
  libgit2,
  openssl,
  zlib,
  versionCheckHook,
  nix-update-script,
}:

rustPlatform.buildRustPackage (finalAttrs: {
@@ -15,7 +17,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
  src = fetchFromGitHub {
    owner = "brocode";
    repo = "fw";
    rev = "v${finalAttrs.version}";
    tag = "v${finalAttrs.version}";
    hash = "sha256-tqtiAw4+bnCJMF37SluAE9NM55MAjBGkJTvGLcmYFnA=";
  };

@@ -35,11 +37,16 @@ rustPlatform.buildRustPackage (finalAttrs: {
    OPENSSL_NO_VENDOR = true;
  };

  doInstallCheck = true;
  nativeInstallCheckInputs = [ versionCheckHook ];

  passthru.updateScript = nix-update-script { };

  meta = {
    description = "Workspace productivity booster";
    homepage = "https://github.com/brocode/fw";
    license = lib.licenses.wtfpl;
    maintainers = [ ];
    maintainers = [ lib.maintainers.progrm_jarvis ];
    mainProgram = "fw";
  };
})
+10 −3
Original line number Diff line number Diff line
@@ -5,6 +5,8 @@
  pkg-config,
  wrapGAppsHook4,
  gtk4,
  versionCheckHook,
  nix-update-script,
}:

rustPlatform.buildRustPackage (finalAttrs: {
@@ -14,7 +16,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
  src = fetchFromGitHub {
    owner = "nik012003";
    repo = "ripdrag";
    rev = "v${finalAttrs.version}";
    tag = "v${finalAttrs.version}";
    hash = "sha256-1IUS0PNzIoSrlBXQrUmw/lXUD8auVVKhu/irSoYoK6w=";
  };

@@ -27,12 +29,17 @@ rustPlatform.buildRustPackage (finalAttrs: {

  buildInputs = [ gtk4 ];

  doInstallCheck = true;
  nativeInstallCheckInputs = [ versionCheckHook ];

  passthru.updateScript = nix-update-script { };

  meta = {
    description = "Application that lets you drag and drop files from and to the terminal";
    homepage = "https://github.com/nik012003/ripdrag";
    changelog = "https://github.com/nik012003/ripdrag/releases/tag/${finalAttrs.src.rev}";
    changelog = "https://github.com/nik012003/ripdrag/releases/tag/v${finalAttrs.version}";
    license = lib.licenses.gpl3Only;
    maintainers = [ ];
    maintainers = [ lib.maintainers.progrm_jarvis ];
    mainProgram = "ripdrag";
  };
})
+3 −2
Original line number Diff line number Diff line
@@ -11,7 +11,8 @@ rustPlatform.buildRustPackage (finalAttrs: {
  version = "0.14.1";

  src = fetchCrate {
    inherit (finalAttrs) pname version;
    pname = "rune-languageserver";
    inherit (finalAttrs) version;
    hash = "sha256-0b8XGbMQqMolOdQEMjpwHAVI3A4fXemyCowN39qY16A=";
  };

@@ -39,7 +40,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
      asl20
      mit
    ];
    maintainers = [ ];
    maintainers = [ lib.maintainers.progrm_jarvis ];
    mainProgram = "rune-languageserver";
  };
})
+6 −2
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
  lib,
  rustPlatform,
  fetchCrate,
  nix-update-script,
}:

rustPlatform.buildRustPackage (finalAttrs: {
@@ -9,12 +10,15 @@ rustPlatform.buildRustPackage (finalAttrs: {
  version = "0.5.4";

  src = fetchCrate {
    inherit (finalAttrs) pname version;
    pname = "rust-audit-info";
    inherit (finalAttrs) version;
    hash = "sha256-zxdF65/9cgdDLM7HA30NCEZj1S5SogH+oM3aq55K0os=";
  };

  cargoHash = "sha256-ygz9uYwuDI892kwYwJPTsTAkBfsnRN2unOgqv8VHXSA=";

  passthru.updateScript = nix-update-script { };

  meta = {
    description = "Command-line tool to extract the dependency trees embedded in binaries by cargo-auditable";
    mainProgram = "rust-audit-info";
@@ -23,6 +27,6 @@ rustPlatform.buildRustPackage (finalAttrs: {
      mit # or
      asl20
    ];
    maintainers = [ ];
    maintainers = [ lib.maintainers.progrm_jarvis ];
  };
})
Loading