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

Commits on Nov 19, 2018

  1. dvd-vr: init at 0.9.7

    fgaz committed Nov 19, 2018
    Copy the full SHA
    b74f46e View commit details
  2. Merge pull request #50626 from fgaz/dvd-vr/init

    dvd-vr: init at 0.9.7
    c0bw3b authored Nov 19, 2018
    Copy the full SHA
    d5b6933 View commit details
Showing with 22 additions and 0 deletions.
  1. +20 −0 pkgs/tools/cd-dvd/dvd-vr/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
20 changes: 20 additions & 0 deletions pkgs/tools/cd-dvd/dvd-vr/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
name = "dvd-vr-${version}";
version = "0.9.7";
src = fetchurl {
url = "https://www.pixelbeat.org/programs/dvd-vr/dvd-vr-${version}.tar.gz";
sha256 = "13wkdia3c0ryda40b2nzpb9vddimasgc4w95hvl0k555k9k8bl0r";
};
makeFlags = [ "PREFIX=$(out)" ];

meta = with stdenv.lib; {
homepage = https://www.pixelbeat.org/programs/dvd-vr/;
downloadPage = https://www.pixelbeat.org/programs/dvd-vr/;
description = "A utility to identify and optionally copy recordings from a DVD-VR format disc";
license = licenses.gpl2;
maintainers = with maintainers; [ fgaz ];
};
}

2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -2349,6 +2349,8 @@ with pkgs;

duply = callPackage ../tools/backup/duply { };

dvd-vr = callPackage ../tools/cd-dvd/dvd-vr { };

dvdisaster = callPackage ../tools/cd-dvd/dvdisaster { };

dvdplusrwtools = callPackage ../tools/cd-dvd/dvd+rw-tools { };