rq: 0.10.4 -> 1.0.2
This commit is contained in:
parent
f8aeca57c7
commit
9a5b23119c
|
@ -1,19 +1,17 @@
|
||||||
{ stdenv, fetchFromGitHub, rustPlatform, llvmPackages, v8 }:
|
{ lib, fetchFromGitHub, rustPlatform, libiconv, llvmPackages, v8 }:
|
||||||
|
|
||||||
with rustPlatform;
|
rustPlatform.buildRustPackage rec {
|
||||||
|
|
||||||
buildRustPackage rec {
|
|
||||||
pname = "rq";
|
pname = "rq";
|
||||||
version = "0.10.4";
|
version = "1.0.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "dflemstr";
|
owner = "dflemstr";
|
||||||
repo = "rq";
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "066f6sdy0vrp113wlg18q9p0clyrg9iqbj17ly0yn8dxr5iar002";
|
sha256 = "0km9d751jr6c5qy4af6ks7nv3xfn13iqi03wq59a1c73rnf0zinp";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoSha256 = "1n92d82l9wqrpsbkqiir6zsgf12xp4xb6bxq2nywg4lmwrnyapbh";
|
cargoSha256 = "0km9d751jr6c5qy4af6ks7nv3xfn13iqi03wq59a1c73rnf0zinp";
|
||||||
|
|
||||||
buildInputs = [ llvmPackages.clang-unwrapped v8 ];
|
buildInputs = [ llvmPackages.clang-unwrapped v8 ];
|
||||||
|
|
||||||
|
@ -22,12 +20,11 @@ buildRustPackage rec {
|
||||||
export V8_SOURCE="${v8}"
|
export V8_SOURCE="${v8}"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
description = "A tool for doing record analysis and transformation";
|
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 ];
|
license = with licenses; [ asl20 ];
|
||||||
maintainers = [ maintainers.aristid ];
|
maintainers = [ maintainers.aristid ];
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
broken = true;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -6112,7 +6112,9 @@ in
|
||||||
|
|
||||||
routino = callPackage ../tools/misc/routino { };
|
routino = callPackage ../tools/misc/routino { };
|
||||||
|
|
||||||
rq = callPackage ../development/tools/rq { };
|
rq = callPackage ../development/tools/rq {
|
||||||
|
inherit (darwin) libiconv;
|
||||||
|
};
|
||||||
|
|
||||||
rsnapshot = callPackage ../tools/backup/rsnapshot { };
|
rsnapshot = callPackage ../tools/backup/rsnapshot { };
|
||||||
|
|
||||||
|
@ -23697,8 +23699,8 @@ in
|
||||||
|
|
||||||
bftools = callPackage ../applications/science/biology/bftools { };
|
bftools = callPackage ../applications/science/biology/bftools { };
|
||||||
|
|
||||||
blast = callPackage ../applications/science/biology/blast {
|
blast = callPackage ../applications/science/biology/blast {
|
||||||
inherit (darwin.apple_sdk.frameworks) ApplicationServices;
|
inherit (darwin.apple_sdk.frameworks) ApplicationServices;
|
||||||
};
|
};
|
||||||
|
|
||||||
cd-hit = callPackage ../applications/science/biology/cd-hit { };
|
cd-hit = callPackage ../applications/science/biology/cd-hit { };
|
||||||
|
|
Loading…
Reference in New Issue