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