forked from mirrors/nixpkgs
dolbybcsoftwaredecode: init at april-2018
This commit is contained in:
parent
40c877143d
commit
d5d3e334ad
31
pkgs/applications/audio/dolbybcsoftwaredecode/default.nix
Normal file
31
pkgs/applications/audio/dolbybcsoftwaredecode/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ lib, fetchurl, stdenv, unzip, fpc }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "dolbybcsoftwaredecode";
|
||||
version = "april-2018";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/dolbybcsoftwaredecode/April-2018/SourceCode.zip";
|
||||
sha256 = "sha256-uLcsRIpwmJlstlGV8I4+/30+D9GDpUt7DOIP/GkXWp4=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ unzip fpc ];
|
||||
buildPhase = ''
|
||||
fpc DolbyBi64.PP
|
||||
'';
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp DolbyBi64 $out/bin/
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A Dolby B & C software decoder";
|
||||
homepage = "https://sourceforge.net/projects/dolbybcsoftwaredecode/";
|
||||
maintainers = with maintainers; [ lorenz ];
|
||||
|
||||
# Project is has source code available, but has no explicit license.
|
||||
# I asked upstream to assign a license, so maybe this can be free
|
||||
# in the future, but for now let's play it safe and make it unfree.
|
||||
license = lib.licenses.unfree;
|
||||
};
|
||||
}
|
|
@ -1337,6 +1337,8 @@ with pkgs;
|
|||
|
||||
davinci-resolve = callPackage ../applications/video/davinci-resolve { };
|
||||
|
||||
dolbybcsoftwaredecode = callPackage ../applications/audio/dolbybcsoftwaredecode { };
|
||||
|
||||
dwarfs = callPackage ../tools/filesystems/dwarfs { };
|
||||
|
||||
gamemode = callPackage ../tools/games/gamemode {
|
||||
|
|
Loading…
Reference in a new issue