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: 2307ac9fe24b
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 902dbe7a3e39
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jun 21, 2019

  1. vdr: 2.4.0 -> 2.4.1

    ck3d committed Jun 21, 2019
    Copy the full SHA
    5e26875 View commit details

Commits on Jun 24, 2019

  1. Merge pull request #63630 from ck3d/vdr-2.4.1

    vdr: 2.4.0 -> 2.4.1
    markuskowa authored Jun 24, 2019
    Copy the full SHA
    902dbe7 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/applications/video/vdr/default.nix
8 changes: 4 additions & 4 deletions pkgs/applications/video/vdr/default.nix
Original file line number Diff line number Diff line change
@@ -4,12 +4,12 @@
, enableBidi ? true
}: stdenv.mkDerivation rec {

name = "vdr-${version}";
version = "2.4.0";
pname = "vdr";
version = "2.4.1";

src = fetchurl {
url = "ftp://ftp.tvdr.de/vdr/${name}.tar.bz2";
sha256 = "1klcgy9kr7n6z8d2c77j63bl8hvhx5qnqppg73f77004hzz4kbwk";
url = "ftp://ftp.tvdr.de/vdr/${pname}-${version}.tar.bz2";
sha256 = "1p51b14aqzncx3xpfg0rjplc48pg7520035i5p6r5zzkqhszihr5";
};

enableParallelBuilding = true;