1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 14:41:17 +00:00

Merge pull request #123168 from ck3d/vdr-2.4.7

vdr: 2.4.6 -> 2.4.7
This commit is contained in:
markuskowa 2021-05-16 20:01:19 +02:00 committed by GitHub
commit 0e5545a108
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,12 +5,12 @@
}: stdenv.mkDerivation rec { }: stdenv.mkDerivation rec {
pname = "vdr"; pname = "vdr";
version = "2.4.6"; version = "2.4.7";
src = fetchgit { src = fetchgit {
url = "git://git.tvdr.de/vdr.git"; url = "git://git.tvdr.de/vdr.git";
rev = "V20406"; rev = version;
sha256 = "sha256-te9lMmnWpesv+np2gJUDL17pI0WyVxhUnoBsFSRtOco="; sha256 = "sha256-hDJ/DemWuLddDvXGqxkSTIqATlWUjolcP7ojjhK2CDk=";
}; };
enableParallelBuilding = true; enableParallelBuilding = true;
@ -51,6 +51,6 @@
description = "Video Disc Recorder"; description = "Video Disc Recorder";
maintainers = [ maintainers.ck3d ]; maintainers = [ maintainers.ck3d ];
platforms = [ "i686-linux" "x86_64-linux" ]; platforms = [ "i686-linux" "x86_64-linux" ];
license = licenses.gpl2; license = licenses.gpl2Plus;
}; };
} }