Unverified Commit d933c637 authored by Franz Pletz's avatar Franz Pletz Committed by GitHub
Browse files

xsv: remove (#377107)

parents 258b01b8 5419f859
Loading
Loading
Loading
Loading

pkgs/tools/text/xsv/default.nix

deleted100644 → 0
+0 −34
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchFromGitHub,
  rustPlatform,
  Security,
}:

rustPlatform.buildRustPackage rec {
  pname = "xsv";
  version = "0.13.0";

  src = fetchFromGitHub {
    owner = "BurntSushi";
    repo = "xsv";
    rev = version;
    sha256 = "17v1nw36mrarrd5yv4xd3mpc1d7lvhd5786mqkzyyraf78pjg045";
  };

  cargoHash = "sha256-y9f9eBMhSBx6L3cZyZ4VkNSB7yJ55khCskUp6t4HBq4=";

  buildInputs = lib.optional stdenv.hostPlatform.isDarwin Security;

  meta = with lib; {
    description = "Fast CSV toolkit written in Rust";
    mainProgram = "xsv";
    homepage = "https://github.com/BurntSushi/xsv";
    license = with licenses; [
      unlicense # or
      mit
    ];
    maintainers = [ maintainers.jgertm ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -1535,6 +1535,7 @@ mapAliases {
  xonsh-unwrapped = python3Packages.xonsh; # Added 2024-06-18
  xplayer = throw "xplayer has been removed as the upstream project was archived"; # Added 2024-12-27
  xprite-editor = throw "'xprite-editor' has been removed due to lack of maintenance upstream. Consider using 'pablodraw' or 'aseprite' instead"; # Added 2024-09-14
  xsv = throw "'xsv' has been removed due to lack of upstream maintenance";
  xulrunner = firefox-unwrapped; # Added 2023-11-03
  xvfb_run = throw "'xvfb_run' has been renamed to/replaced by 'xvfb-run'"; # Converted to throw 2024-10-17
  xwaylandvideobridge = libsForQt5.xwaylandvideobridge; # Added 2024-09-27
+0 −4
Original line number Diff line number Diff line
@@ -5528,10 +5528,6 @@ with pkgs;
    inherit (darwin.apple_sdk.frameworks) Security;
  };
  xsv = callPackage ../tools/text/xsv {
    inherit (darwin.apple_sdk.frameworks) Security;
  };
  xtreemfs = callPackage ../tools/filesystems/xtreemfs { };
  xorriso = libisoburn;