vc: 1.0.0 -> 1.1.0

This commit is contained in:
Nikolay Amiantov 2016-01-13 20:00:38 +03:00
parent 9aa961a299
commit ad735e76e7

View file

@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
version = "1.0.0";
version = "1.1.0";
name = "Vc-${version}";
src = fetchFromGitHub {
owner = "VcDevel";
repo = "Vc";
rev = version;
sha256 = "014li9kcbbxinh9r1nngdzspjzs2nxwslcknd950msjkqgnjhz4r";
sha256 = "1i27zpwcpsfabvf1vpyx5rlzkkgqfd55c3c0jq5fghywyj6743j8";
};
nativeBuildInputs = [ cmake ];