Merge pull request #326598 from afh/update-got
This commit is contained in:
commit
6e9677e9ae
@ -14,18 +14,24 @@
|
|||||||
, autoPatchelfHook
|
, autoPatchelfHook
|
||||||
, testers
|
, testers
|
||||||
, signify
|
, signify
|
||||||
|
, overrideSDK
|
||||||
, withSsh ? true, openssh
|
, withSsh ? true, openssh
|
||||||
# Default editor to use when neither VISUAL nor EDITOR are defined
|
# Default editor to use when neither VISUAL nor EDITOR are defined
|
||||||
, defaultEditor ? null
|
, defaultEditor ? null
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
let
|
||||||
|
stdenv' = if stdenv.isDarwin && stdenv.isx86_64
|
||||||
|
then overrideSDK stdenv "11.0"
|
||||||
|
else stdenv;
|
||||||
|
in
|
||||||
|
stdenv'.mkDerivation (finalAttrs: {
|
||||||
pname = "got";
|
pname = "got";
|
||||||
version = "0.100";
|
version = "0.101";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://gameoftrees.org/releases/portable/got-portable-${finalAttrs.version}.tar.gz";
|
url = "https://gameoftrees.org/releases/portable/got-portable-${finalAttrs.version}.tar.gz";
|
||||||
hash = "sha256-/DqKIGf/aZ09aL/rB7te+AauHmJ+mOTrVEbkqT9WUBI=";
|
hash = "sha256-JQZBgscxoMv4Dki77s8tYo4r5BBG+ErsDYnY5/am3MA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config bison ]
|
nativeBuildInputs = [ pkg-config bison ]
|
||||||
|
Loading…
Reference in New Issue
Block a user