nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

pyradio: add changelog to meta

authored by

Fabian Affolter and committed by
GitHub
af2a04eb 7674933d

+10 -3
+10 -3
pkgs/applications/audio/pyradio/default.nix
··· 1 - { lib, python3Packages, fetchFromGitHub, installShellFiles }: 1 + { lib 2 + , python3Packages 3 + , fetchFromGitHub 4 + , installShellFiles 5 + }: 2 6 3 7 python3Packages.buildPythonApplication rec { 4 8 pname = "pyradio"; ··· 12 8 owner = "coderholic"; 13 9 repo = pname; 14 10 rev = "refs/tags/${version}"; 15 - sha256 = "sha256-1lczH8xTZV1XVVByLAGXJbjXd20JUJALIJJ3s9+orxM="; 11 + hash = "sha256-1lczH8xTZV1XVVByLAGXJbjXd20JUJALIJJ3s9+orxM="; 16 12 }; 17 13 18 - nativeBuildInputs = [ installShellFiles ]; 14 + nativeBuildInputs = [ 15 + installShellFiles 16 + ]; 19 17 20 18 propagatedBuildInputs = with python3Packages; [ 21 19 requests ··· 36 30 meta = with lib; { 37 31 homepage = "http://www.coderholic.com/pyradio/"; 38 32 description = "Curses based internet radio player"; 33 + changelog = "https://github.com/coderholic/pyradio/releases/tag/${version}"; 39 34 license = licenses.mit; 40 35 maintainers = with maintainers; [ contrun ]; 41 36 };