mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
chmlib: 0.4 -> 0.4a
This commit is contained in:
parent
f6a6cf3d73
commit
a613c4a008
1 changed files with 10 additions and 6 deletions
|
@ -1,17 +1,21 @@
|
|||
{ stdenv, fetchurl }:
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "chmlib-0.40";
|
||||
name = "chmlib-0.40a";
|
||||
|
||||
src = fetchurl {
|
||||
url = "${meta.homepage}/${name}.tar.bz2";
|
||||
sha256 = "18zzb4x3z0d7fjh1x5439bs62dmgsi4c1pg3qyr7h5gp1i5xcj9l";
|
||||
src = fetchFromGitHub {
|
||||
owner = "jedwing";
|
||||
repo = "CHMLib";
|
||||
rev = "2bef8d063ec7d88a8de6fd9f0513ea42ac0fa21f";
|
||||
sha256 = "1hah0nw0l05npva2r35ywwd0kzyiiz4vamghm6d71h8170iva6m9";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.jedrea.com/chmlib;
|
||||
license = stdenv.lib.licenses.lgpl2;
|
||||
description = "A library for dealing with Microsoft ITSS/CHM format files";
|
||||
platforms = ["x86_64-linux" "i686-linux" "x86_64-darwin"];
|
||||
platforms = ["x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux"];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue