Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 33 lines 659 B view raw
1{ 2 stdenv, 3 lib, 4 fetchFromGitLab, 5 vdr, 6 graphicsmagick, 7}: 8stdenv.mkDerivation rec { 9 pname = "vdr-skin-nopacity"; 10 version = "1.1.19"; 11 12 src = fetchFromGitLab { 13 repo = "SkinNopacity"; 14 owner = "kamel5"; 15 hash = "sha256-f15KtoPLvB5bF//5+gmmDmx8MGmiIDPGOYoNgSkcVqM="; 16 tag = version; 17 }; 18 19 buildInputs = [ 20 vdr 21 graphicsmagick 22 ]; 23 24 installFlags = [ "DESTDIR=$(out)" ]; 25 26 meta = with lib; { 27 inherit (src.meta) homepage; 28 description = "Highly customizable native true color skin for the Video Disc Recorder"; 29 maintainers = [ maintainers.ck3d ]; 30 license = licenses.gpl2; 31 inherit (vdr.meta) platforms; 32 }; 33}