aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/chmlib
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2017-06-11 04:43:15 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2017-06-11 04:43:15 +0300
commitfa67cf5dab5604b589bd92aaee4fb4104862836f (patch)
tree3f7f77fd9572511d388315fe7ac7322d873d6350 /pkgs/development/libraries/chmlib
parent6e3499efc521cf1381819f14fa3bc81f43bbee5f (diff)
chmlib: Broken on aarch64
https://nix-cache.s3.amazonaws.com/log/dynpb96qlcgk0bgx5x1kmghv2qwfjcfk-chmlib-0.40.drv
Diffstat (limited to 'pkgs/development/libraries/chmlib')
-rw-r--r--pkgs/development/libraries/chmlib/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/chmlib/default.nix b/pkgs/development/libraries/chmlib/default.nix
index e572db68e838..fbefee48d5b2 100644
--- a/pkgs/development/libraries/chmlib/default.nix
+++ b/pkgs/development/libraries/chmlib/default.nix
@@ -1,8 +1,8 @@
-{stdenv, fetchurl}:
+{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "chmlib-0.40";
-
+
src = fetchurl {
url = "${meta.homepage}/${name}.tar.bz2";
sha256 = "18zzb4x3z0d7fjh1x5439bs62dmgsi4c1pg3qyr7h5gp1i5xcj9l";
@@ -10,8 +10,8 @@ stdenv.mkDerivation rec {
meta = {
homepage = http://www.jedrea.com/chmlib;
- license = "LGPL";
+ license = stdenv.lib.licenses.lgpl2;
description = "A library for dealing with Microsoft ITSS/CHM format files";
- platforms = stdenv.lib.platforms.unix;
+ platforms = ["x86_64-linux" "i686-linux" "x86_64-darwin"];
};
}