forked from mirrors/nixpkgs
eventstore: fix source hash (close #11732)
This commit is contained in:
parent
76eae695c7
commit
eab677ea21
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchgit, fetchpatch, git, mono, v8, icu }:
|
{ stdenv, fetchFromGitHub, fetchpatch, git, mono, v8, icu }:
|
||||||
|
|
||||||
# There are some similarities with the pinta derivation. We should
|
# There are some similarities with the pinta derivation. We should
|
||||||
# have a helper to make it easy to package these Mono apps.
|
# have a helper to make it easy to package these Mono apps.
|
||||||
|
@ -6,11 +6,11 @@
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "EventStore-${version}";
|
name = "EventStore-${version}";
|
||||||
version = "3.0.3";
|
version = "3.0.3";
|
||||||
src = fetchgit {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/EventStore/EventStore.git";
|
owner = "EventStore";
|
||||||
rev = "a1382252dd1ed0554ddb04015cdb2cbc1b0a65c1";
|
repo = "EventStore";
|
||||||
sha256 = "07ir6jlli2q1yvsnyw8r8dfril6h1wmfj98yf7a6k81585v2mc6g";
|
rev = "oss-v${version}";
|
||||||
leaveDotGit = true;
|
sha256 = "1xz1dpnbkqqd3ph9g3z5cghr8zp14sr9y31lrdjrdydr3gm4sll2";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
|
Loading…
Reference in a new issue