Skip to content

Commit

Permalink
got: 0.68.1 -> 0.69
Browse files Browse the repository at this point in the history
Add dependency on libbsd, required for arc4random_* functions
  • Loading branch information
wahjava committed Apr 29, 2022
1 parent e10da1c commit a3c0afb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/applications/version-management/got/default.nix
@@ -1,17 +1,17 @@
{ lib, stdenv, fetchurl, pkg-config, openssl, libuuid, libmd, zlib, ncurses }:
{ lib, stdenv, fetchurl, pkg-config, openssl, libbsd, libuuid, libmd, zlib, ncurses }:

stdenv.mkDerivation rec {
pname = "got";
version = "0.68.1";
version = "0.69";

src = fetchurl {
url = "https://gameoftrees.org/releases/portable/got-portable-${version}.tar.gz";
sha256 = "122wignzrhsw00mfnh7mxcxvjyp9rk73yxzfyvmg7f5kmb0hng35";
sha256 = "1cnl0yk866wzjwgas587kvb08njq7db71b5xqsdrwd1varp010vm";
};

nativeBuildInputs = [ pkg-config ];

buildInputs = [ openssl libuuid libmd zlib ncurses ];
buildInputs = [ openssl libbsd libuuid libmd zlib ncurses ];

doInstallCheck = true;

Expand Down

0 comments on commit a3c0afb

Please sign in to comment.