lol

rq: fix version output, add figsoda as a maintainer

figsoda ebf2df23 8a94df39

+8 -2
+8 -2
pkgs/development/tools/rq/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, rustPlatform }: 1 + { lib, rustPlatform, fetchFromGitHub }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "rq"; ··· 18 18 # Prevents build failures when upgrading rustc, which may give more warnings. 19 19 substituteInPlace src/lib.rs \ 20 20 --replace "#![deny(warnings)]" "" 21 + 22 + # build script tries to get version information from git 23 + # this fixes the --version output 24 + rm build.rs 21 25 ''; 22 26 27 + VERGEN_SEMVER = version; 28 + 23 29 meta = with lib; { 24 30 description = "A tool for doing record analysis and transformation"; 25 31 homepage = "https://github.com/dflemstr/rq"; 26 32 license = with licenses; [ asl20 ]; 27 - maintainers = with maintainers; [ aristid Br1ght0ne ]; 33 + maintainers = with maintainers; [ aristid Br1ght0ne figsoda ]; 28 34 }; 29 35 }