onthespot: specify license

- add changelog to meta

+9 -8
+9 -8
pkgs/applications/misc/onthespot/default.nix
··· 1 { lib 2 - , python3 3 - , fetchFromGitHub 4 , copyDesktopItems 5 - , wrapQtAppsHook 6 , makeDesktopItem 7 }: 8 9 python3.pkgs.buildPythonApplication rec { ··· 14 src = fetchFromGitHub { 15 owner = "casualsnek"; 16 repo = "onthespot"; 17 - rev = "v${version}"; 18 hash = "sha256-VaJBNsT7uNOGY43GnzhUqDQNiPoFZcc2UaIfOKgkufg="; 19 }; 20 ··· 54 makeWrapperArgs+=("''${qtWrapperArgs[@]}") 55 ''; 56 57 - meta = { 58 description = " QT based Spotify music downloader written in Python"; 59 homepage = "https://github.com/casualsnek/onthespot"; 60 - license = lib.licenses.gpl2; 61 - maintainers = with lib.maintainers; [ onny ]; 62 - platforms = lib.platforms.linux; 63 }; 64 }
··· 1 { lib 2 , copyDesktopItems 3 + , fetchFromGitHub 4 , makeDesktopItem 5 + , python3 6 + , wrapQtAppsHook 7 }: 8 9 python3.pkgs.buildPythonApplication rec { ··· 14 src = fetchFromGitHub { 15 owner = "casualsnek"; 16 repo = "onthespot"; 17 + rev = "refs/tags/v${version}"; 18 hash = "sha256-VaJBNsT7uNOGY43GnzhUqDQNiPoFZcc2UaIfOKgkufg="; 19 }; 20 ··· 54 makeWrapperArgs+=("''${qtWrapperArgs[@]}") 55 ''; 56 57 + meta = with lib; { 58 description = " QT based Spotify music downloader written in Python"; 59 homepage = "https://github.com/casualsnek/onthespot"; 60 + changelog = "https://github.com/casualsnek/onthespot/releases/tag/v${version}"; 61 + license = licenses.gpl2Only; 62 + maintainers = with maintainers; [ onny ]; 63 + platforms = platforms.linux; 64 }; 65 }