Skip to content

Commit cfb5cd1

Browse files
authored
xan: init at 0.42.0 (NixOS#375564)
2 parents 7dc7387 + d3f0bc0 commit cfb5cd1

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

pkgs/by-name/xa/xan/package.nix

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
lib,
3+
rustPlatform,
4+
fetchFromGitHub,
5+
}:
6+
rustPlatform.buildRustPackage rec {
7+
pname = "xan";
8+
version = "0.42.0";
9+
10+
src = fetchFromGitHub {
11+
owner = "medialab";
12+
repo = "xan";
13+
tag = version;
14+
hash = "sha256-8uNfiPJjZWqtbrBU/LRYM7PI5/4JBqZGe1dtCWArU8M=";
15+
};
16+
17+
cargoHash = "sha256-TRT//USKHCc7MAgNWAiZoovQmkud3isT+kwsNkJH8Bk=";
18+
useFetchCargoVendor = true;
19+
20+
# FIXME: tests fail and I do not have the time to investigate. Temporarily disable
21+
# tests so that we can manually run and test the package for packaging purposes.
22+
doCheck = false;
23+
24+
meta = {
25+
description = "Command line tool to process CSV files directly from the shell";
26+
homepage = "https://github.com/medialab/xan";
27+
license = lib.licenses.mit;
28+
maintainers = with lib.maintainers; [ NotAShelf ];
29+
mainProgram = "xan";
30+
};
31+
}

pkgs/top-level/aliases.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1542,7 +1542,7 @@ mapAliases {
15421542
xonsh-unwrapped = python3Packages.xonsh; # Added 2024-06-18
15431543
xplayer = throw "xplayer has been removed as the upstream project was archived"; # Added 2024-12-27
15441544
xprite-editor = throw "'xprite-editor' has been removed due to lack of maintenance upstream. Consider using 'pablodraw' or 'aseprite' instead"; # Added 2024-09-14
1545-
xsv = throw "'xsv' has been removed due to lack of upstream maintenance";
1545+
xsv = throw "'xsv' has been removed due to lack of upstream maintenance. Please see 'xan' for a maintained alternative";
15461546
xulrunner = firefox-unwrapped; # Added 2023-11-03
15471547
xvfb_run = throw "'xvfb_run' has been renamed to/replaced by 'xvfb-run'"; # Converted to throw 2024-10-17
15481548
xwaylandvideobridge = libsForQt5.xwaylandvideobridge; # Added 2024-09-27

0 commit comments

Comments
 (0)