tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
rq: fix version output, add figsoda as a maintainer
figsoda
3 years ago
ebf2df23
8a94df39
+8
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
rq
default.nix
+8
-2
pkgs/development/tools/rq/default.nix
···
1
1
-
{ stdenv, lib, fetchFromGitHub, rustPlatform }:
1
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
21
+
22
22
+
# build script tries to get version information from git
23
23
+
# this fixes the --version output
24
24
+
rm build.rs
21
25
'';
22
26
27
27
+
VERGEN_SEMVER = version;
28
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
27
-
maintainers = with maintainers; [ aristid Br1ght0ne ];
33
33
+
maintainers = with maintainers; [ aristid Br1ght0ne figsoda ];
28
34
};
29
35
}