mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-25 06:13:54 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
31 lines
767 B
Nix
31 lines
767 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, help2man }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "postsrsd";
|
|
version = "1.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "roehling";
|
|
repo = "postsrsd";
|
|
rev = version;
|
|
sha256 = "sha256-aSI9TR1wSyMA0SKkbavk+IugRfW4ZEgpzrNiXn0F5ak=";
|
|
};
|
|
|
|
cmakeFlags = [ "-DGENERATE_SRS_SECRET=OFF" "-DINIT_FLAVOR=systemd" ];
|
|
|
|
preConfigure = ''
|
|
sed -i "s,\"/etc\",\"$out/etc\",g" CMakeLists.txt
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake help2man ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/roehling/postsrsd";
|
|
description = "Postfix Sender Rewriting Scheme daemon";
|
|
mainProgram = "postsrsd";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|