Commit 3f9728fc authored by Robert Schütz's avatar Robert Schütz
Browse files
parent 5c2eeaaf
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -20,13 +20,13 @@

stdenv.mkDerivation rec {
  pname = "libdeltachat";
  version = "1.156.2";
  version = "1.156.3";

  src = fetchFromGitHub {
    owner = "deltachat";
    repo = "deltachat-core-rust";
    owner = "chatmail";
    repo = "core";
    tag = "v${version}";
    hash = "sha256-CpFnO8stLLTH/XOZZS3j9nVrf2FRekjkQ/R1pmw5o9A=";
    hash = "sha256-FJTHG1NUdKcYTPrBkhu4ZiodSwpNgaGUHiHBSk/lUVA=";
  };

  patches = [
@@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
  cargoDeps = rustPlatform.fetchCargoVendor {
    pname = "deltachat-core-rust";
    inherit version src;
    hash = "sha256-jrsGMNgKglk+Rq/ZGiZgSZrT4uSA5RjbTYaDtW0Ijyg=";
    hash = "sha256-Kh0TU6lJ7spZIOUyJabFd1icqN9jU+kG+BpADAi0nRo=";
  };

  nativeBuildInputs = [
@@ -86,8 +86,8 @@ stdenv.mkDerivation rec {

  meta = with lib; {
    description = "Delta Chat Rust Core library";
    homepage = "https://github.com/deltachat/deltachat-core-rust/";
    changelog = "https://github.com/deltachat/deltachat-core-rust/blob/${src.tag}/CHANGELOG.md";
    homepage = "https://github.com/chatmail/core";
    changelog = "https://github.com/chatmail/core/blob/${src.tag}/CHANGELOG.md";
    license = licenses.mpl20;
    maintainers = with maintainers; [ dotlambda ];
    platforms = platforms.unix;