summary refs log tree commit diff
path: root/pkgs/development/libraries/libsixel
diff options
context:
space:
mode:
authorNiklas Hambüchen <mail@nh2.me>2020-01-16 02:52:21 +0100
committerNiklas Hambüchen <mail@nh2.me>2020-01-16 02:52:21 +0100
commit575f9552cc898c7586f61a9d239eebde21f7cbc7 (patch)
treef66c7e66ad86e28fb75809f01b1c4f5669942b61 /pkgs/development/libraries/libsixel
parent36b5802a8beb975be4d39afcd760b24722db502d (diff)
downloadnixpkgs-575f9552cc898c7586f61a9d239eebde21f7cbc7.tar
nixpkgs-575f9552cc898c7586f61a9d239eebde21f7cbc7.tar.gz
nixpkgs-575f9552cc898c7586f61a9d239eebde21f7cbc7.tar.bz2
nixpkgs-575f9552cc898c7586f61a9d239eebde21f7cbc7.tar.lz
nixpkgs-575f9552cc898c7586f61a9d239eebde21f7cbc7.tar.xz
nixpkgs-575f9552cc898c7586f61a9d239eebde21f7cbc7.tar.zst
nixpkgs-575f9552cc898c7586f61a9d239eebde21f7cbc7.zip
libsixel: Enable tests.
The 1.8.2 -> 1.8.4 upgrade actually made the tests compile.
Diffstat (limited to 'pkgs/development/libraries/libsixel')
-rw-r--r--pkgs/development/libraries/libsixel/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libsixel/default.nix b/pkgs/development/libraries/libsixel/default.nix
index 9807d7276fc..9973f337398 100644
--- a/pkgs/development/libraries/libsixel/default.nix
+++ b/pkgs/development/libraries/libsixel/default.nix
@@ -10,6 +10,12 @@ stdenv.mkDerivation rec {
     sha256 = "1zckahfl0j7k68jf87iwdc4yx7fkfhxwa7lrf22dnz36d2iq785v";
   };
 
+  configureFlags = [
+    "--enable-tests"
+  ];
+
+  doCheck = true;
+
   meta = with stdenv.lib; {
     description = "The SIXEL library for console graphics, and converter programs";
     homepage = http://saitoha.github.com/libsixel;