Merge pull request #108928 from SuperSandro2000/opustags

authored by

Sandro and committed by
GitHub
ad97cdf8 be660e2a

+11 -23
+5 -17
pkgs/applications/audio/opustags/default.nix
··· 1 - { stdenv, fetchFromGitHub, fetchpatch, cmake, pkg-config, libiconv, libogg 1 + { stdenv, lib, fetchFromGitHub, cmake, pkg-config, libiconv, libogg 2 2 , ffmpeg, glibcLocales, perl, perlPackages }: 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "opustags"; 6 - version = "1.5.1"; 6 + version = "1.6.0"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "fmang"; 10 10 repo = "opustags"; 11 11 rev = version; 12 - sha256 = "1dicv4s395b9gb4jpr0rnxdq9azr45pid62q3x08lb7cvyq3yxbh"; 12 + sha256 = "1wsfw713rhi2gg5xc04cx5i31hlw0l3wdflj3r1y8w45bdk6ag1z"; 13 13 }; 14 14 15 - patches = [ 16 - # Fix building on darwin 17 - (fetchpatch { 18 - url = "https://github.com/fmang/opustags/commit/64fc6f8f6d20e034892e89abff0236c85cae98dc.patch"; 19 - sha256 = "1djifzqhf1w51gbpqbndsh3gnl9iizp6hppxx8x2a92i9ns22zpg"; 20 - }) 21 - (fetchpatch { 22 - url = "https://github.com/fmang/opustags/commit/f98208c1a1d10c15f98b127bbfdf88a7b15b08dc.patch"; 23 - sha256 = "1h3v0r336fca0y8zq1vl2wr8gaqs3vvrrckx7pvji4k1jpiqvp38"; 24 - }) 25 - ]; 26 - 27 15 buildInputs = [ libogg ]; 28 16 29 - nativeBuildInputs = [ cmake pkg-config ] ++ stdenv.lib.optional stdenv.isDarwin libiconv; 17 + nativeBuildInputs = [ cmake pkg-config ] ++ lib.optionals stdenv.isDarwin [ libiconv ]; 30 18 31 19 doCheck = true; 32 20 ··· 38 26 make check 39 27 ''; 40 28 41 - meta = with stdenv.lib; { 29 + meta = with lib; { 42 30 homepage = "https://github.com/fmang/opustags"; 43 31 description = "Ogg Opus tags editor"; 44 32 platforms = platforms.all;
+2 -2
pkgs/development/python-modules/awkward0/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "awkward0"; 12 - version = "0.15.1"; 12 + version = "0.15.2"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "scikit-hep"; 16 16 repo = "awkward-0.x"; 17 17 rev = version; 18 - sha256 = "17zrw25h6g5m4ik1c5piqb7q2bxrshfm4hm3lzfz4s8gi0xjm5gz"; 18 + sha256 = "sha256-C6/byIGcabGjws5QI9sh5BO2M4Lhqkooh4mSjUEKCKU="; 19 19 }; 20 20 21 21 nativeBuildInputs = [ pytestrunner ];
+2 -2
pkgs/development/python-modules/graphene/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "graphene"; 18 - version = "3.0.0b6"; 18 + version = "3.0.0b7"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "graphql-python"; 22 22 repo = "graphene"; 23 23 rev = "v${version}"; 24 - sha256 = "1q6qmyc4jbi9cws4d98x7bgi7gppd09dmzijkb19fwbh4giy938r"; 24 + sha256 = "sha256-bVCCLPnV5F8PqLMg3GwcpwpGldrxsU+WryL6gj6y338="; 25 25 }; 26 26 27 27 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/uproot3/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "uproot3"; 9 - version = "3.14.1"; 9 + version = "3.14.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "scikit-hep"; 13 13 repo = "uproot3"; 14 14 rev = version; 15 - sha256 = "1npwh4l96wg3m24jhfc8i84nfwfc18flrmymf80fx101wmpi2qz8"; 15 + sha256 = "sha256-6/e+qMgwyFUo8MRRTAaGp9WLPxE2fqMEK4paq26Epzc="; 16 16 }; 17 17 18 18 nativeBuildInputs = [ pytestrunner ];