Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rq: 0.10.4 -> 1.0.2 #77321

Merged
merged 2 commits into from Jan 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
21 changes: 9 additions & 12 deletions pkgs/development/tools/rq/default.nix
@@ -1,19 +1,17 @@
{ stdenv, fetchFromGitHub, rustPlatform, llvmPackages, v8 }:
{ lib, fetchFromGitHub, rustPlatform, libiconv, llvmPackages, v8 }:

with rustPlatform;

buildRustPackage rec {
rustPlatform.buildRustPackage rec {
pname = "rq";
version = "0.10.4";
version = "1.0.2";

src = fetchFromGitHub {
owner = "dflemstr";
repo = "rq";
repo = pname;
rev = "v${version}";
sha256 = "066f6sdy0vrp113wlg18q9p0clyrg9iqbj17ly0yn8dxr5iar002";
sha256 = "0km9d751jr6c5qy4af6ks7nv3xfn13iqi03wq59a1c73rnf0zinp";
};

cargoSha256 = "1n92d82l9wqrpsbkqiir6zsgf12xp4xb6bxq2nywg4lmwrnyapbh";
cargoSha256 = "0z971fpyj4v5hjp6q4yxgxv069h9idkpkcixb14gxi7kpiswprvz";

buildInputs = [ llvmPackages.clang-unwrapped v8 ];

Expand All @@ -22,12 +20,11 @@ buildRustPackage rec {
export V8_SOURCE="${v8}"
'';

meta = with stdenv.lib; {
meta = with lib; {
description = "A tool for doing record analysis and transformation";
homepage = https://github.com/dflemstr/rq ;
homepage = "https://github.com/dflemstr/rq";
license = with licenses; [ asl20 ];
maintainers = [ maintainers.aristid ];
maintainers = with maintainers; [ aristid filalex77 ];
platforms = platforms.all;
broken = true;
};
}
8 changes: 5 additions & 3 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -6112,7 +6112,9 @@ in

routino = callPackage ../tools/misc/routino { };

rq = callPackage ../development/tools/rq { };
rq = callPackage ../development/tools/rq {
inherit (darwin) libiconv;
};

rsnapshot = callPackage ../tools/backup/rsnapshot { };

Expand Down Expand Up @@ -23697,8 +23699,8 @@ in

bftools = callPackage ../applications/science/biology/bftools { };

blast = callPackage ../applications/science/biology/blast {
inherit (darwin.apple_sdk.frameworks) ApplicationServices;
blast = callPackage ../applications/science/biology/blast {
inherit (darwin.apple_sdk.frameworks) ApplicationServices;
};

cd-hit = callPackage ../applications/science/biology/cd-hit { };
Expand Down