blob: a7493ed82e76805816ce59f1a374a54201b8c100 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
pkgs: attrs: with pkgs; with attrs; rec {
version = "2.6.4";
versionTag = "R_${lib.replaceStrings ["."] ["_"] version}";
src = fetchFromGitHub {
owner = "libexpat";
repo = "libexpat";
rev = "${versionTag}";
hash = "sha256-ek8/3c8bKG+z7fIM+QCNsH7eoVGAt7z3bXBHZ3QjlS8=";
};
nativeBuildInputs = [ autoreconfHook ];
preConfigure = ''
sh ./buildconf.sh
'';
sourceRoot = "source/expat";
}
|