cplay-ng: 5.3.1 -> 5.4.0 (#400334)

authored by Peder Bergebakken Sundt and committed by GitHub 0e251085 6f14a180

+11 -16
+11 -16
pkgs/by-name/cp/cplay-ng/package.nix
··· 1 { 2 lib, 3 - python3, 4 fetchFromGitHub, 5 makeWrapper, 6 mpv, 7 pulseaudio, 8 }: 9 10 - python3.pkgs.buildPythonApplication rec { 11 pname = "cplay-ng"; 12 - version = "5.3.1"; 13 14 src = fetchFromGitHub { 15 owner = "xi"; 16 repo = "cplay-ng"; 17 - rev = version; 18 - hash = "sha256-6mphhoLDkGZ2r+elzLlPl3B8fNz3loqrQB8x8276AHI="; 19 }; 20 21 - nativeBuildInputs = [ 22 - makeWrapper 23 - ]; 24 25 - build-system = [ 26 - python3.pkgs.setuptools 27 - ]; 28 - 29 - pyproject = true; 30 31 postInstall = '' 32 wrapProgram $out/bin/cplay-ng \ ··· 38 } 39 ''; 40 41 - meta = with lib; { 42 homepage = "https://github.com/xi/cplay-ng"; 43 description = "Simple curses audio player"; 44 mainProgram = "cplay-ng"; ··· 55 maintained. This is a rewrite that aims to stay true to the original 56 design while evolving with a shifting environment. 57 ''; 58 - license = licenses.gpl2Plus; 59 - maintainers = with maintainers; [ fgaz ]; 60 }; 61 }
··· 1 { 2 lib, 3 + python3Packages, 4 fetchFromGitHub, 5 makeWrapper, 6 mpv, 7 pulseaudio, 8 }: 9 10 + python3Packages.buildPythonApplication rec { 11 pname = "cplay-ng"; 12 + version = "5.4.0"; 13 + pyproject = true; 14 15 src = fetchFromGitHub { 16 owner = "xi"; 17 repo = "cplay-ng"; 18 + tag = version; 19 + hash = "sha256-ob5wX+Q5XKB/fTYG5phLU61imonpk2A/fk5cg/dfr1Y="; 20 }; 21 22 + nativeBuildInputs = [ makeWrapper ]; 23 24 + build-system = [ python3Packages.setuptools ]; 25 26 postInstall = '' 27 wrapProgram $out/bin/cplay-ng \ ··· 33 } 34 ''; 35 36 + meta = { 37 homepage = "https://github.com/xi/cplay-ng"; 38 description = "Simple curses audio player"; 39 mainProgram = "cplay-ng"; ··· 50 maintained. This is a rewrite that aims to stay true to the original 51 design while evolving with a shifting environment. 52 ''; 53 + license = lib.licenses.gpl2Plus; 54 + maintainers = with lib.maintainers; [ fgaz ]; 55 }; 56 }