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