Skip to content

Commit

Permalink
Add zug dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
arximboldi committed Sep 23, 2019
1 parent 7f1e734 commit 8499ec0
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
18 changes: 18 additions & 0 deletions nix/deps.nix
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,22 @@ rec {
license = licenses.lgpl3;
};
};

zug = stdenv.mkDerivation rec {
name = "zug-${version}";
version = "git-${commit}";
commit = "5b72389901844ddaca1fb63e44d41f77a6165c2a";
src = fetchFromGitHub {
owner = "arximboldi";
repo = "zug";
rev = commit;
sha256 = "1r62khc0fn5a10h138i2jvmf9qlbs1q7kqxvx380ilcqhl32z2jw";
};
nativeBuildInputs = [ cmake ];
meta = with stdenv.lib; {
homepage = "http://sinusoid.es/zug";
description = "Immutable data structures for C++";
license = licenses.lgpl3;
};
};
}
1 change: 1 addition & 0 deletions shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ stdenv.mkDerivation rec {
deps.libhttpserver
deps.cereal
deps.immer
deps.zug
sass
SDL2
SDL2_ttf
Expand Down

0 comments on commit 8499ec0

Please sign in to comment.