blob: 015903cd6d0846c15f7e63c743bb468258243b3f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
pkgs: attrs: with pkgs; with attrs; rec {
version = "2.9.13";
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "GNOME";
repo = "libxml2";
rev = "v${version}";
sha256 = "1rm2bisnvr5h59vbh7cbjpvf6jy8p85zz812bnclhs0wziglh2ha";
};
passthru = {};
patches = [];
nativeBuildInputs = [ pkg-config autoreconfHook ];
}
|