Unverified Commit 50aab076 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #256064 from aaronjheng/pouf

pouf: 0.5.1 -> 0.6.3
parents 989e88bb 3b327094
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -5,16 +5,21 @@

rustPlatform.buildRustPackage rec {
  pname = "pouf";
  version = "0.5.1";
  version = "0.6.3";

  src = fetchFromGitHub {
    owner = "mothsart";
    repo = pname;
    rev = version;
    sha256 = "1zz91r37d6nqvdy29syq853krqdkigiqihwz7ww9kvagfvzvdh13";
    hash = "sha256-tW86b9a7u1jyfmHjwjs+5DaUujRZH+VhGQsj0CBj0yk=";
  };

  cargoSha256 = "1ikm9fqi37jznln2xsyzfm625lv8kwjzanpm3wglx2s1k1jkmcy9";
  cargoHash = "sha256-rVJAaeg27SdM8cTx12rKLIGEYtXUhLHXUYpT78oVNlo=";

  # Cargo.lock is outdated.
  preConfigure = ''
    cargo update --offline
  '';

  postInstall = "make PREFIX=$out copy-data";