Skip to content

Commit

Permalink
[nix] bump nixpkgs to latest
Browse files Browse the repository at this point in the history
Signed-off-by: Avimitin <[email protected]>
  • Loading branch information
Avimitin authored and sequencer committed Sep 10, 2024
1 parent 9e42c70 commit 831c4df
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion nix/pkgs/vcs-fhs-env.nix
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,19 @@ buildFHSEnv {
expat
sqlite
nssmdns
(libkrb5.overrideAttrs rec {
(krb5.overrideAttrs rec {
version = "1.18.2";
src = fetchurl {
url = "https://kerberos.org/dist/krb5/${lib.versions.majorMinor version}/krb5-${version}.tar.gz";
hash = "sha256-xuTJ7BqYFBw/XWbd8aE1VJBQyfq06aRiDumyIIWHOuA=";
};
sourceRoot = "krb5-${version}/src";
# error: assignment discards 'const' qualifier from pointer target type:
# https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html#index-Wdiscarded-qualifiers-Werror=discarded-qualifiers8
#
# Error when compiling with OpenSSL header, should be fixed in new version.
# But we need to keep at 1.18.2, so here is the dirty workaround.
env.NIX_CFLAGS_COMPILE = "-Wno-discarded-qualifiers";
})
(gnugrep.overrideAttrs rec {
version = "3.1";
Expand Down

0 comments on commit 831c4df

Please sign in to comment.