tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libwapcaplet: move to by-name
jopejoe1
5 months ago
79097233
caba7cee
+6
-6
2 changed files
expand all
collapse all
unified
split
pkgs
applications
networking
browsers
netsurf
default.nix
by-name
li
libwapcaplet
package.nix
+1
-1
pkgs/applications/networking/browsers/netsurf/default.nix
···
40
libparserutils = pkgs.libparserutils;
41
libsvgtiny = callPackage ./libsvgtiny.nix { };
42
libutf8proc = callPackage ./libutf8proc.nix { };
43
-
libwapcaplet = callPackage ./libwapcaplet.nix { };
44
nsgenbind = callPackage ./nsgenbind.nix { };
45
}
46
)
···
40
libparserutils = pkgs.libparserutils;
41
libsvgtiny = callPackage ./libsvgtiny.nix { };
42
libutf8proc = callPackage ./libutf8proc.nix { };
43
+
libwapcaplet = pkgs.libwapcaplet;
44
nsgenbind = callPackage ./nsgenbind.nix { };
45
}
46
)
+5
-5
pkgs/applications/networking/browsers/netsurf/libwapcaplet.nix
pkgs/by-name/li/libwapcaplet/package.nix
···
2
lib,
3
stdenv,
4
fetchurl,
5
-
buildsystem,
6
}:
7
8
stdenv.mkDerivation (finalAttrs: {
9
-
pname = "netsurf-libwapcaplet";
10
version = "0.4.3";
11
12
src = fetchurl {
···
14
hash = "sha256-myqh3W1mRfjpkrNpf9vYfwwOHaVyH6VO0ptITRMWDFw=";
15
};
16
17
-
buildInputs = [ buildsystem ];
18
19
makeFlags = [
20
"PREFIX=$(out)"
21
-
"NSSHARED=${buildsystem}/share/netsurf-buildsystem"
22
];
23
24
env.NIX_CFLAGS_COMPILE = "-Wno-error=cast-function-type";
···
27
homepage = "https://www.netsurf-browser.org/projects/libwapcaplet/";
28
description = "String internment library for netsurf browser";
29
license = lib.licenses.mit;
30
-
inherit (buildsystem.meta) maintainers platforms;
31
};
32
})
···
2
lib,
3
stdenv,
4
fetchurl,
5
+
netsurf-buildsystem,
6
}:
7
8
stdenv.mkDerivation (finalAttrs: {
9
+
pname = "libwapcaplet";
10
version = "0.4.3";
11
12
src = fetchurl {
···
14
hash = "sha256-myqh3W1mRfjpkrNpf9vYfwwOHaVyH6VO0ptITRMWDFw=";
15
};
16
17
+
buildInputs = [ netsurf-buildsystem ];
18
19
makeFlags = [
20
"PREFIX=$(out)"
21
+
"NSSHARED=${netsurf-buildsystem}/share/netsurf-buildsystem"
22
];
23
24
env.NIX_CFLAGS_COMPILE = "-Wno-error=cast-function-type";
···
27
homepage = "https://www.netsurf-browser.org/projects/libwapcaplet/";
28
description = "String internment library for netsurf browser";
29
license = lib.licenses.mit;
30
+
inherit (netsurf-buildsystem.meta) maintainers platforms;
31
};
32
})