Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
31 lines
804 B
Nix
31 lines
804 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "xan";
|
|
version = "0.53.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "medialab";
|
|
repo = "xan";
|
|
tag = version;
|
|
hash = "sha256-gQqZrN8v5edgTKMmNGS3Pp0xdWH1awSa+dZaBNX7EX4=";
|
|
};
|
|
|
|
cargoHash = "sha256-CCCBF1ZvRZAtPNOfoU3Im7/wIpFakIbBFH0UjWb3tD0=";
|
|
|
|
# FIXME: tests fail and I do not have the time to investigate. Temporarily disable
|
|
# tests so that we can manually run and test the package for packaging purposes.
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Command line tool to process CSV files directly from the shell";
|
|
homepage = "https://github.com/medialab/xan";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ NotAShelf ];
|
|
mainProgram = "xan";
|
|
};
|
|
}
|