Commit 6b8c4f11 authored by Tom Fitzhenry's avatar Tom Fitzhenry Committed by tomf
Browse files

spiped: small fixes, e.g. sha256 -> hash

parent 76cc1fd9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -11,8 +11,8 @@ stdenv.mkDerivation rec {
  version = "1.6.2";

  src = fetchurl {
    url = "https://www.tarsnap.com/spiped/${pname}-${version}.tgz";
    sha256 = "sha256-BdRofRLRHX+YiNQ/PYDFQbdyHJhwONCF9xyRuwYgRWc=";
    url = "https://www.tarsnap.com/spiped/spiped-${version}.tgz";
    hash = "sha256-BdRofRLRHX+YiNQ/PYDFQbdyHJhwONCF9xyRuwYgRWc=";
  };

  buildInputs = [ openssl ];