lol
0
fork

Configure Feed

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

lmdbxx: use finalAttrs pattern

+3 -4
+3 -4
pkgs/development/libraries/lmdbxx/default.nix
··· 2 2 , fetchFromGitHub 3 3 , lmdb }: 4 4 5 - stdenv.mkDerivation rec { 5 + stdenv.mkDerivation (finalAttrs: { 6 6 pname = "lmdbxx"; 7 7 version = "1.0.0"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "hoytech"; 11 11 repo = "lmdbxx"; 12 - rev = version; 12 + rev = finalAttrs.version; 13 13 sha256 = "sha256-7CxQZdgHVvmof6wVR9Mzic6tg89XJT3Z1ICGRs7PZYo="; 14 14 }; 15 15 ··· 22 22 license = lib.licenses.unlicense; 23 23 maintainers = with lib.maintainers; [ fgaz ]; 24 24 }; 25 - } 26 - 25 + })