lock: 1.3.0 -> 1.3.4 (#364295)
[NixPkgs.git] / pkgs / by-name / do / dolbybcsoftwaredecode / package.nix
bloba4d6c750a314ca2d046812c7da30f06de815a7f2
2   lib,
3   fetchurl,
4   stdenv,
5   unzip,
6   fpc,
7 }:
9 stdenv.mkDerivation rec {
10   pname = "dolbybcsoftwaredecode";
11   version = "april-2018";
13   src = fetchurl {
14     url = "mirror://sourceforge/dolbybcsoftwaredecode/April-2018/SourceCode.zip";
15     sha256 = "sha256-uLcsRIpwmJlstlGV8I4+/30+D9GDpUt7DOIP/GkXWp4=";
16   };
18   nativeBuildInputs = [
19     unzip
20     fpc
21   ];
22   buildPhase = ''
23     fpc DolbyBi64.PP
24   '';
25   installPhase = ''
26     mkdir -p $out/bin
27     cp DolbyBi64 $out/bin/
28   '';
30   meta = with lib; {
31     description = "Dolby B & C software decoder";
32     homepage = "https://sourceforge.net/projects/dolbybcsoftwaredecode/";
33     maintainers = with maintainers; [ lorenz ];
35     # Project is has source code available, but has no explicit license.
36     # I asked upstream to assign a license, so maybe this can be free
37     # in the future, but for now let's play it safe and make it unfree.
38     license = lib.licenses.unfree;
39     mainProgram = "DolbyBi64";
40   };