about summary refs log tree commit diff
path: root/pkgs/tools/security/hashcash
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2021-01-20 07:20:11 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2021-01-20 09:11:11 +1000
commit31f5dd3f3655fbedac19f64f77844aa5ed79501c (patch)
treec2a0358e4cd260c2e616c3478f0c4c93ab7634de /pkgs/tools/security/hashcash
parent33fdfd07d292e911683706640107ae6a15537a92 (diff)
treewide: editorconfig fixes
- remove trailing whitespace
- use spaces for indentation
Diffstat (limited to 'pkgs/tools/security/hashcash')
-rw-r--r--pkgs/tools/security/hashcash/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/security/hashcash/default.nix b/pkgs/tools/security/hashcash/default.nix
index b13425b720551..f86684178fcb2 100644
--- a/pkgs/tools/security/hashcash/default.nix
+++ b/pkgs/tools/security/hashcash/default.nix
@@ -3,14 +3,14 @@
 stdenv.mkDerivation rec {
   pname = "hashcash";
   version = "1.22";
-  
+
   buildInputs = [ openssl ];
 
   src = fetchurl {
     url = "http://www.hashcash.org/source/hashcash-${version}.tgz";
     sha256 = "15kqaimwb2y8wvzpn73021bvay9mz1gqqfc40gk4hj6f84nz34h1";
   };
-  
+
   makeFlags = [
     "generic-openssl"
     "LIBCRYPTO=-lcrypto"
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
     "MAN_INSTALL_PATH=${placeholder "out"}/share/man/man1"
     "DOC_INSTALL_PATH=${placeholder "out"}/share/doc/hashcash-$(version)"
   ];
-  
+
   meta = with lib; {
     description = "Proof-of-work algorithm used as spam and denial-of-service counter measure";
     homepage = "http://hashcash.org";