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