about summary refs log tree commit diff
path: root/pkgs/development/libraries/libfyaml
diff options
context:
space:
mode:
authorRobert Schütz <dev@schuetz-co.de>2021-04-03 11:12:50 +0200
committerRobert Schütz <dev@schuetz-co.de>2021-04-03 11:12:50 +0200
commit76f9ddf4700d1132a2ad604185b1af4885e18b5a (patch)
tree424c5f29c2c77c35ccab063c2ee6b6df9a3c6556 /pkgs/development/libraries/libfyaml
parent22d8831f7a34bda3952f60bf7c064f4d5eaab905 (diff)
downloadnixlib-76f9ddf4700d1132a2ad604185b1af4885e18b5a.tar
nixlib-76f9ddf4700d1132a2ad604185b1af4885e18b5a.tar.gz
nixlib-76f9ddf4700d1132a2ad604185b1af4885e18b5a.tar.bz2
nixlib-76f9ddf4700d1132a2ad604185b1af4885e18b5a.tar.lz
nixlib-76f9ddf4700d1132a2ad604185b1af4885e18b5a.tar.xz
nixlib-76f9ddf4700d1132a2ad604185b1af4885e18b5a.tar.zst
nixlib-76f9ddf4700d1132a2ad604185b1af4885e18b5a.zip
libfyaml: enable tests
Diffstat (limited to 'pkgs/development/libraries/libfyaml')
-rw-r--r--pkgs/development/libraries/libfyaml/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libfyaml/default.nix b/pkgs/development/libraries/libfyaml/default.nix
index a95c2d523b6a..dfb540b0bd29 100644
--- a/pkgs/development/libraries/libfyaml/default.nix
+++ b/pkgs/development/libraries/libfyaml/default.nix
@@ -13,6 +13,12 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ autoreconfHook pkg-config ];
 
+  doCheck = true;
+
+  preCheck = ''
+    patchShebangs test
+  '';
+
   meta = with lib; {
     homepage = "https://github.com/pantoniou/libfyaml";
     description = "Fully feature complete YAML parser and emitter, supporting the latest YAML spec and passing the full YAML testsuite";