Merge pull request #30340 from peterhoeg/p/cryfs

cryfs: init at 0.9.7 and minor updates to dependencies (scrypt and spdlog)
This commit is contained in:
Peter Hoeg
2017-10-13 11:04:27 +08:00
committed by GitHub
4 changed files with 75 additions and 19 deletions

View File

@@ -2,16 +2,16 @@
stdenv.mkDerivation rec {
name = "spdlog-${version}";
version = "0.13.0";
version = "0.14.0";
src = fetchFromGitHub {
owner = "gabime";
repo = "spdlog";
rev = "v${version}";
sha256 = "0pfagrkq6afpkl269vbi1fd6ckakzpr5b5cbapb8rr7hgsrilxza";
owner = "gabime";
repo = "spdlog";
rev = "v${version}";
sha256 = "13730429gwlabi432ilpnja3sfvy0nn2719vnhhmii34xcdyc57q";
};
buildInputs = [ cmake ];
nativeBuildInputs = [ cmake ];
# cmakeFlags = [ "-DSPDLOG_BUILD_EXAMPLES=ON" ];
@@ -28,8 +28,5 @@ stdenv.mkDerivation rec {
license = licenses.mit;
maintainers = with maintainers; [ obadz ];
platforms = platforms.all;
# This is a header-only library, no point in hydra building it:
hydraPlatforms = [];
};
}