Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2e98e0c0032f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 736d6e3b790d
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 24, 2018

  1. smplayer: 18.4.0 -> 18.5.0 (#41040)

    Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
    
    This update was made based on information from https://repology.org/metapackage/smplayer/versions.
    
    These checks were done:
    
    - built on NixOS
    - Warning: no invocation of /nix/store/mll3p02g4sfglbg8d7z54y748z16rhwr-smplayer-18.5.0/bin/smplayer had a zero exit code or showed the expected version
    - Warning: no invocation of /nix/store/mll3p02g4sfglbg8d7z54y748z16rhwr-smplayer-18.5.0/bin/simple_web_server had a zero exit code or showed the expected version
    - 0 of 2 passed binary check by having a zero exit code.
    - 0 of 2 passed binary check by having the new version present in output.
    - found 18.5.0 with grep in /nix/store/mll3p02g4sfglbg8d7z54y748z16rhwr-smplayer-18.5.0
    - directory tree listing: https://gist.github.com/68e3b40c30899a9dbba0225f52760bda
    - du listing: https://gist.github.com/e7152199c8f96f4ba4fdcc614d54f3d8
    r-ryantm authored and xeji committed May 24, 2018
    Copy the full SHA
    736d6e3 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/applications/video/smplayer/default.nix
4 changes: 2 additions & 2 deletions pkgs/applications/video/smplayer/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, qmake, qtscript }:

stdenv.mkDerivation rec {
name = "smplayer-18.4.0";
name = "smplayer-18.5.0";

src = fetchurl {
url = "mirror://sourceforge/smplayer/${name}.tar.bz2";
sha256 = "0q2fbg41djyxsy6jinlnidpcqxvs9bi91ga3fwlgnfh6kxsw2ldd";
sha256 = "0fxd8zmp5dyk7y9yymjhj2i5218nfvfqb4830pgzzjqz1zdax8rn";
};

buildInputs = [ qtscript ];