nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at netboot-syslinux-multiplatform 22 lines 601 B view raw
1{ lib, rustPlatform, fetchFromGitHub }: 2 3rustPlatform.buildRustPackage rec { 4 pname = "pqrs"; 5 version = "0.3.1"; 6 7 src = fetchFromGitHub { 8 owner = "manojkarthick"; 9 repo = "pqrs"; 10 rev = "v${version}"; 11 sha256 = "sha256-t6Y6gpMEpccCoyhG66FZEKHVNCbHblaqYZY1iJUZVUA="; 12 }; 13 14 cargoHash = "sha256-fnoYVWpBn5Dil2o+u2MKQqd8dEKFE2i29Qz7cJae+gE="; 15 16 meta = with lib; { 17 description = "CLI tool to inspect Parquet files"; 18 homepage = "https://github.com/manojkarthick/pqrs"; 19 license = with licenses; [ mit /* or */ asl20 ]; 20 maintainers = [ maintainers.manojkarthick ]; 21 }; 22}