about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/video/vdr/nopacity/default.nix
blob: e0173ab6c8ae7ae4ab0dc203cdd312675e3c2c81 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, lib, fetchFromGitLab, vdr, graphicsmagick }:
stdenv.mkDerivation rec {
  pname = "vdr-skin-nopacity";
  version = "1.1.16";

  src = fetchFromGitLab {
    repo = "SkinNopacity";
    owner = "kamel5";
    sha256 = "sha256-5TTilBKlNsFBm5BaCoRV1LzZgpad2lOIQGyk94jGYls=";
    rev = version;
  };

  buildInputs = [ vdr graphicsmagick ];

  installFlags = [ "DESTDIR=$(out)" ];

  meta = with lib; {
    inherit (src.meta) homepage;
    description = "Highly customizable native true color skin for the Video Disc Recorder";
    maintainers = [ maintainers.ck3d ];
    license = licenses.gpl2;
    inherit (vdr.meta) platforms;
  };
}