mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
jq: Add test
This commit is contained in:
parent
fe8fa45573
commit
8529788e73
@ -172,6 +172,7 @@ in
|
||||
jenkins = handleTest ./jenkins.nix {};
|
||||
jirafeau = handleTest ./jirafeau.nix {};
|
||||
jitsi-meet = handleTest ./jitsi-meet.nix {};
|
||||
jq = handleTest ./jq.nix {};
|
||||
k3s = handleTest ./k3s.nix {};
|
||||
kafka = handleTest ./kafka.nix {};
|
||||
keepalived = handleTest ./keepalived.nix {};
|
||||
|
10
nixos/tests/jq.nix
Normal file
10
nixos/tests/jq.nix
Normal file
@ -0,0 +1,10 @@
|
||||
import ./make-test-python.nix ({ pkgs, ... }: {
|
||||
name = "jq";
|
||||
meta = with pkgs.stdenv.lib.maintainers; { maintainers = [ nequissimus ]; };
|
||||
|
||||
nodes.jq = { pkgs, ... }: { environment.systemPackages = [ pkgs.jq ]; };
|
||||
|
||||
testScript = ''
|
||||
assert "world" in jq.succeed('echo \'{"values":["hello","world"]}\'| jq \'.values[1]\''')
|
||||
'';
|
||||
})
|
@ -1,26 +1,26 @@
|
||||
{ stdenv, fetchurl, oniguruma }:
|
||||
{ stdenv, nixosTests, fetchurl, oniguruma }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "jq";
|
||||
version="1.6";
|
||||
version = "1.6";
|
||||
|
||||
src = fetchurl {
|
||||
url="https://github.com/stedolan/jq/releases/download/jq-${version}/jq-${version}.tar.gz";
|
||||
sha256="0wmapfskhzfwranf6515nzmm84r7kwljgfs7dg6bjgxakbicis2x";
|
||||
url =
|
||||
"https://github.com/stedolan/jq/releases/download/jq-${version}/jq-${version}.tar.gz";
|
||||
sha256 = "0wmapfskhzfwranf6515nzmm84r7kwljgfs7dg6bjgxakbicis2x";
|
||||
};
|
||||
|
||||
outputs = [ "bin" "doc" "man" "dev" "lib" "out" ];
|
||||
|
||||
buildInputs = [ oniguruma ];
|
||||
|
||||
configureFlags =
|
||||
[
|
||||
configureFlags = [
|
||||
"--bindir=\${bin}/bin"
|
||||
"--sbindir=\${bin}/bin"
|
||||
"--datadir=\${doc}/share"
|
||||
"--mandir=\${man}/share/man"
|
||||
]
|
||||
# jq is linked to libjq:
|
||||
]
|
||||
# jq is linked to libjq:
|
||||
++ stdenv.lib.optional (!stdenv.isDarwin) "LDFLAGS=-Wl,-rpath,\\\${libdir}";
|
||||
|
||||
doInstallCheck = true;
|
||||
@ -30,8 +30,10 @@ stdenv.mkDerivation rec {
|
||||
$bin/bin/jq --help >/dev/null
|
||||
'';
|
||||
|
||||
passthru.tests = { inherit (nixosTests) jq; };
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = ''A lightweight and flexible command-line JSON processor'';
|
||||
description = "A lightweight and flexible command-line JSON processor";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ raskin globin ];
|
||||
platforms = with platforms; linux ++ darwin;
|
||||
|
Loading…
Reference in New Issue
Block a user