Netsurf libdom: 0.4.0 -> 0.4.1
This commit is contained in:
parent
486a3fb556
commit
ed204dc61b
@ -3,6 +3,7 @@
|
||||
lib.makeScope pkgs.newScope (self: with self; {
|
||||
buildsystem = callPackage ./buildsystem.nix { };
|
||||
libcss = callPackage ./libcss.nix { };
|
||||
libdom = callPackage ./libdom.nix { };
|
||||
libhubbub = callPackage ./libhubbub.nix { };
|
||||
libnsbmp = callPackage ./libnsbmp.nix { };
|
||||
libnsgif = callPackage ./libnsgif.nix { };
|
||||
|
@ -6,23 +6,22 @@
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
name = "netsurf-${libname}-${version}";
|
||||
pname = "netsurf-${libname}";
|
||||
libname = "libdom";
|
||||
version = "0.4.0";
|
||||
version = "0.4.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz";
|
||||
sha256 = "1ixkqsl3f7dl1kajksm0c231w1v5xy8z6hm3v67hgm9nh4qcvfcy";
|
||||
sha256 = "sha256-mO4HJHHlXiCMmHjlFcQQrUYso2+HtK/L7K0CPzos70o=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ expat
|
||||
buildsystem
|
||||
buildInputs = [
|
||||
expat
|
||||
libhubbub
|
||||
libparserutils
|
||||
libwapcaplet
|
||||
libhubbub
|
||||
];
|
||||
buildsystem ];
|
||||
|
||||
makeFlags = [
|
||||
"PREFIX=$(out)"
|
||||
@ -30,10 +29,15 @@ stdenv.mkDerivation rec {
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://www.netsurf-browser.org/";
|
||||
homepage = "https://www.netsurf-browser.org/projects/${libname}/";
|
||||
description = "Document Object Model library for netsurf browser";
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.vrthra ];
|
||||
longDescription = ''
|
||||
LibDOM is an implementation of the W3C DOM, written in C. It is currently
|
||||
in development for use with NetSurf and is intended to be suitable for use
|
||||
in other projects under a more permissive license.
|
||||
'';
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.vrthra maintainers.AndersonTorres ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user