* Added regionset, a tool for changing the region code setting of DVD

players.

svn path=/nixpkgs/trunk/; revision=29952
This commit is contained in:
Eelco Dolstra 2011-10-21 00:43:56 +00:00
parent 8f76df522e
commit 6ddae753dc
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,18 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "regionset-20030629";
src = fetchurl {
url = "mirror://sourceforge/dvd/regionset.tar.gz";
sha256 = "0ssr7s0g60kq04y8v60rh2fzn9wp93al3v4rl0ybza1skild9v70";
};
installPhase = "mkdir -p $out/sbin; cp regionset $out/sbin";
meta = {
homepage = http://dvd.sourceforge.net/;
descriptions = "Tool for changing the region code setting of DVD players";
platforms = stdenv.lib.platforms.linux;
};
}

View File

@ -5956,6 +5956,8 @@ let
radeonR600 = callPackage ../os-specific/linux/firmware/radeon-r600 { };
radeonJuniper = callPackage ../os-specific/linux/firmware/radeon-juniper { };
regionset = callPackage ../os-specific/linux/regionset { };
rfkill = callPackage ../os-specific/linux/rfkill { };
rt2860fw = callPackage ../os-specific/linux/firmware/rt2860 { };