mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
25 lines
638 B
Nix
25 lines
638 B
Nix
{ stdenv, lib, fetchFromGitLab, vdr, graphicsmagick }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "vdr-skin-nopacity";
|
|
version = "1.1.17";
|
|
|
|
src = fetchFromGitLab {
|
|
repo = "SkinNopacity";
|
|
owner = "kamel5";
|
|
hash = "sha256-QJKlh5my7e+H5R4E0fCWB/PtwIAXCXw4drQEQzhzfag=";
|
|
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;
|
|
};
|
|
}
|