Unverified Commit 496a1cea authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #281642 from dotlambda/corrosion-0.4.6

corrosion: 0.4.5 -> 0.4.6
parents bcaa4452 c0a35641
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -10,13 +10,13 @@

stdenv.mkDerivation rec {
  pname = "corrosion";
  version = "0.4.5";
  version = "0.4.6";

  src = fetchFromGitHub {
    owner = "corrosion-rs";
    repo = "corrosion";
    rev = "v${version}";
    hash = "sha256-eE3RNLK5xKOjXeA+vDQmM1hvw92TbmPEDLdeqimgwcA=";
    hash = "sha256-WPMxewswSRc1ULBgGTrdZmWeFDWVzHk2jzqGChkRYKE=";
  };

  cargoRoot = "generator";
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
    inherit src;
    sourceRoot = "${src.name}/${cargoRoot}";
    name = "${pname}-${version}";
    hash = "sha256-j9tsRho/gWCGwXUYZSbs3rudT6nYHh0FSfBCAemZHmw=";
    hash = "sha256-R09sgCjwqc22zXg1T7iMx9qmyMz9xlnEuOelPB4O7jw=";
  };

  buildInputs = lib.optional stdenv.isDarwin libiconv;