mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-04-26 00:18:28 +02:00
fixed ssh errors, add hashcash, update mail config, update zsh config
This commit is contained in:
parent
5f4dce9a04
commit
6dece01018
10 changed files with 114 additions and 139 deletions
18
pkgs/hashcash-milter/default.nix
Normal file
18
pkgs/hashcash-milter/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ stdenv, fetchFromGitHub, lib }:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "hashcash-milter";
|
||||
version = "0.1.3";
|
||||
src = fetchFromGitHub {
|
||||
owner = "zholos";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-yVpfvwpZUZQppZpmXmAqjoZH5shWUnA8aMVSOkPyQXw=";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Hashcash Milter";
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ therealr5 ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue