nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

ueberzugpp: 2.8.6 -> 2.8.7

+2 -6
+2 -6
pkgs/tools/graphics/ueberzugpp/default.nix
··· 30 30 31 31 stdenv.mkDerivation rec { 32 32 pname = "ueberzugpp"; 33 - version = "2.8.6"; 33 + version = "2.8.7"; 34 34 35 35 src = fetchFromGitHub { 36 36 owner = "jstkdng"; 37 37 repo = "ueberzugpp"; 38 38 rev = "v${version}"; 39 - hash = "sha256-FNDFNPNiTLAB90dRpVX3XmbzB5pkkJmnhENmsPRldVE="; 39 + hash = "sha256-grkLsbatgezM8wFbwAatLQw35wucU0Kc6hacRefFvHw="; 40 40 }; 41 41 42 42 # error: no member named 'ranges' in namespace 'std' ··· 94 94 # error: aligned deallocation function of type 'void (void *, std::align_val_t) noexcept' is only available on macOS 10.14 or newer 95 95 preBuild = lib.optionalString (stdenv.isDarwin && lib.versionOlder stdenv.hostPlatform.darwinMinVersion "11.0") '' 96 96 export MACOSX_DEPLOYMENT_TARGET=10.14 97 - ''; 98 - 99 - postInstall = '' 100 - ln -s $out/bin/ueberzug $out/bin/ueberzugpp 101 97 ''; 102 98 103 99 meta = with lib; {