sigtop: 0.3.1 -> 0.7.0

Update the version and set platforms to all as it is not only available
to darwin ones

+4 -4
+4 -4
pkgs/tools/backup/sigtop/default.nix
··· 2 3 buildGoModule rec { 4 name = "sigtop"; 5 - version = "0.3.1"; 6 7 src = fetchFromGitHub { 8 owner = "tbvdm"; 9 repo = "sigtop"; 10 rev = "v${version}"; 11 - sha256 = "sha256-U+S+VXRkedq2LkO9Fw/AfNS97GvFEfjD8dq/VMlBOv4="; 12 }; 13 14 - vendorHash = "sha256-xrJ/KLM/f/HVPL4MJzRc1xDlO4e+Iu2lcPG4GnjFRBo="; 15 16 makeFlags = [ 17 "PREFIX=\${out}" ··· 20 meta = with lib; { 21 description = "Utility to export messages, attachments and other data from Signal Desktop"; 22 license = licenses.isc; 23 - platforms = platforms.darwin; 24 maintainers = with maintainers; [ fricklerhandwerk ]; 25 }; 26 }
··· 2 3 buildGoModule rec { 4 name = "sigtop"; 5 + version = "0.7.0"; 6 7 src = fetchFromGitHub { 8 owner = "tbvdm"; 9 repo = "sigtop"; 10 rev = "v${version}"; 11 + sha256 = "sha256-goGvgn1QyWqipcrBvO27BjzFbp7cIPFWzWJaOpp2/1Q="; 12 }; 13 14 + vendorHash = "sha256-K33VZeyOFoLLo64FuYt9bxJvaESSlHEy/2O8kLxxL5U="; 15 16 makeFlags = [ 17 "PREFIX=\${out}" ··· 20 meta = with lib; { 21 description = "Utility to export messages, attachments and other data from Signal Desktop"; 22 license = licenses.isc; 23 + platforms = platforms.all; 24 maintainers = with maintainers; [ fricklerhandwerk ]; 25 }; 26 }