d-spy: 47.0 → 48.rc

https://gitlab.gnome.org/GNOME/d-spy/-/compare/47.0...48.rc

- Removes library.

Changelog-Reviewed-By: Jan Tojnar <jtojnar@gmail.com>

+6 -10
+6 -10
pkgs/by-name/d-/d-spy/package.nix
··· 14 gnome, 15 }: 16 17 - stdenv.mkDerivation rec { 18 pname = "d-spy"; 19 - version = "47.0"; 20 21 outputs = [ 22 "out" 23 - "lib" 24 "dev" 25 ]; 26 27 src = fetchurl { 28 - url = "mirror://gnome/sources/d-spy/${lib.versions.major version}/d-spy-${version}.tar.xz"; 29 - hash = "sha256-7/sw1DKtXkPmxEm9+OMX2il+VuAnQW5z4ulsTPGPaeg="; 30 }; 31 32 nativeBuildInputs = [ ··· 55 description = "D-Bus exploration tool"; 56 mainProgram = "d-spy"; 57 homepage = "https://gitlab.gnome.org/GNOME/d-spy"; 58 - license = with licenses; [ 59 - lgpl3Plus # library 60 - gpl3Plus # app 61 - ]; 62 teams = [ teams.gnome ]; 63 platforms = platforms.linux; 64 }; 65 - }
··· 14 gnome, 15 }: 16 17 + stdenv.mkDerivation (finalAttrs: { 18 pname = "d-spy"; 19 + version = "48.rc"; 20 21 outputs = [ 22 "out" 23 "dev" 24 ]; 25 26 src = fetchurl { 27 + url = "mirror://gnome/sources/d-spy/${lib.versions.major finalAttrs.version}/d-spy-${finalAttrs.version}.tar.xz"; 28 + hash = "sha256-feUoCoP8fS99DJJLM2/AUyxCuMTIbafZ6n/G54xOsC0="; 29 }; 30 31 nativeBuildInputs = [ ··· 54 description = "D-Bus exploration tool"; 55 mainProgram = "d-spy"; 56 homepage = "https://gitlab.gnome.org/GNOME/d-spy"; 57 + license = licenses.gpl3Plus; 58 teams = [ teams.gnome ]; 59 platforms = platforms.linux; 60 }; 61 + })