libvibrant: 2100c09 -> 1.1.1

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>

+16 -9
+16 -9
pkgs/by-name/li/libvibrant/package.nix
··· 2 , stdenv 3 , fetchFromGitHub 4 , cmake 5 - , makeWrapper 6 , libX11 7 , libXrandr 8 , linuxPackages 9 }: 10 11 - stdenv.mkDerivation rec { 12 pname = "libvibrant"; 13 - version = "2100c09"; 14 15 src = fetchFromGitHub { 16 owner = "libvibrant"; 17 repo = "libvibrant"; 18 - rev = version; 19 - hash = "sha256-nVODwP/PQgYBTHnSplgrkdNOLsF7N+vZ8iPL7gArVNY="; 20 }; 21 22 - buildInputs = [ libX11 libXrandr linuxPackages.nvidia_x11.settings.libXNVCtrl ]; 23 - nativeBuildInputs = [ cmake makeWrapper ]; 24 25 meta = with lib; { 26 description = "Simple library to adjust color saturation of X11 outputs"; 27 homepage = "https://github.com/libvibrant/libvibrant"; 28 - license = licenses.mit; 29 platforms = platforms.linux; 30 mainProgram = "vibrant-cli"; 31 }; 32 - }
··· 2 , stdenv 3 , fetchFromGitHub 4 , cmake 5 , libX11 6 , libXrandr 7 , linuxPackages 8 }: 9 10 + stdenv.mkDerivation (finalAttrs: { 11 pname = "libvibrant"; 12 + version = "1.1.1"; 13 14 src = fetchFromGitHub { 15 owner = "libvibrant"; 16 repo = "libvibrant"; 17 + rev = finalAttrs.version; 18 + hash = "sha256-APja211+U0WVuCRz8f3VIAQLF4oPhh0CJ3Y5EgSJnh0="; 19 }; 20 21 + nativeBuildInputs = [ 22 + cmake 23 + ]; 24 + 25 + buildInputs = [ 26 + libX11 27 + libXrandr 28 + linuxPackages.nvidia_x11.settings.libXNVCtrl 29 + ]; 30 31 meta = with lib; { 32 description = "Simple library to adjust color saturation of X11 outputs"; 33 homepage = "https://github.com/libvibrant/libvibrant"; 34 + license = licenses.gpl3Plus; 35 platforms = platforms.linux; 36 + maintainers = with maintainers; [ Scrumplex ]; 37 mainProgram = "vibrant-cli"; 38 }; 39 + })