libwapcaplet: move to by-name

jopejoe1 79097233 caba7cee

+6 -6
+1 -1
pkgs/applications/networking/browsers/netsurf/default.nix
··· 40 40 libparserutils = pkgs.libparserutils; 41 41 libsvgtiny = callPackage ./libsvgtiny.nix { }; 42 42 libutf8proc = callPackage ./libutf8proc.nix { }; 43 - libwapcaplet = callPackage ./libwapcaplet.nix { }; 43 + libwapcaplet = pkgs.libwapcaplet; 44 44 nsgenbind = callPackage ./nsgenbind.nix { }; 45 45 } 46 46 )
+5 -5
pkgs/applications/networking/browsers/netsurf/libwapcaplet.nix pkgs/by-name/li/libwapcaplet/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchurl, 5 - buildsystem, 5 + netsurf-buildsystem, 6 6 }: 7 7 8 8 stdenv.mkDerivation (finalAttrs: { 9 - pname = "netsurf-libwapcaplet"; 9 + pname = "libwapcaplet"; 10 10 version = "0.4.3"; 11 11 12 12 src = fetchurl { ··· 14 14 hash = "sha256-myqh3W1mRfjpkrNpf9vYfwwOHaVyH6VO0ptITRMWDFw="; 15 15 }; 16 16 17 - buildInputs = [ buildsystem ]; 17 + buildInputs = [ netsurf-buildsystem ]; 18 18 19 19 makeFlags = [ 20 20 "PREFIX=$(out)" 21 - "NSSHARED=${buildsystem}/share/netsurf-buildsystem" 21 + "NSSHARED=${netsurf-buildsystem}/share/netsurf-buildsystem" 22 22 ]; 23 23 24 24 env.NIX_CFLAGS_COMPILE = "-Wno-error=cast-function-type"; ··· 27 27 homepage = "https://www.netsurf-browser.org/projects/libwapcaplet/"; 28 28 description = "String internment library for netsurf browser"; 29 29 license = lib.licenses.mit; 30 - inherit (buildsystem.meta) maintainers platforms; 30 + inherit (netsurf-buildsystem.meta) maintainers platforms; 31 31 }; 32 32 })