mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
32 lines
896 B
Nix
32 lines
896 B
Nix
{ stdenv, lib, fetchFromGitHub, rustPlatform, libiconv, llvmPackages, v8 }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "rq";
|
|
version = "1.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dflemstr";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0km9d751jr6c5qy4af6ks7nv3xfn13iqi03wq59a1c73rnf0zinp";
|
|
};
|
|
|
|
cargoSha256 = "0c5vwy3c5ji602dj64z6jqvcpi2xff03zvjbnwihb3ydqwnb3v67";
|
|
|
|
buildInputs = [ llvmPackages.clang-unwrapped v8 ]
|
|
++ lib.optionals stdenv.isDarwin [ libiconv ];
|
|
|
|
configurePhase = ''
|
|
export LIBCLANG_PATH="${llvmPackages.clang-unwrapped}/lib"
|
|
export V8_SOURCE="${v8}"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A tool for doing record analysis and transformation";
|
|
homepage = "https://github.com/dflemstr/rq";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ aristid filalex77 ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|