Merge pull request #107945 from ninjin/fdm-2.0

fdm: 1.9.0.20170124 -> 2.0
This commit is contained in:
Pavol Rusnak 2020-12-30 14:45:30 +01:00 committed by GitHub
commit 037e9791a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 13 deletions

View File

@ -6441,6 +6441,16 @@
githubId = 1219785; githubId = 1219785;
name = "Félix Baylac-Jacqué"; name = "Félix Baylac-Jacqué";
}; };
ninjin = {
email = "pontus@stenetorp.se";
github = "ninjin";
githubId = 354934;
name = "Pontus Stenetorp";
keys = [{
longkeyid = "rsa4096/0xD430287500E6483C";
fingerprint = "0966 2F9F 3FDA C22B C22E 4CE1 D430 2875 00E6 483C";
}];
};
nioncode = { nioncode = {
email = "nioncode+github@gmail.com"; email = "nioncode+github@gmail.com";
github = "nioncode"; github = "nioncode";

View File

@ -1,20 +1,14 @@
{ stdenv, fetchFromGitHub, autoreconfHook, openssl, tdb, zlib, flex, bison }: { stdenv, fetchFromGitHub, autoreconfHook, openssl, tdb, zlib, flex, bison }:
let stdenv.mkDerivation rec {
pname = "fdm";
baseName = "fdm"; version = "2.0";
version = "1.9.0.20170124";
in
stdenv.mkDerivation {
name = "${baseName}-${version}";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "nicm"; owner = "nicm";
repo = baseName; repo = pname;
rev = "cae4ea37b6b296d1b2e48f62934ea3a7f6085e33"; rev = version;
sha256 = "048191wdv1yprwinipmx2152gvd2iq1ssv7xfb1bzh6zirh1ya3n"; sha256 = "0j2n271ni5wslgjq1f4zgz1nsvqjf895dxy3ij5c904bbp8ckcwq";
}; };
nativeBuildInputs = [ autoreconfHook ]; nativeBuildInputs = [ autoreconfHook ];
@ -23,7 +17,7 @@ stdenv.mkDerivation {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Mail fetching and delivery tool - should do the job of getmail and procmail"; description = "Mail fetching and delivery tool - should do the job of getmail and procmail";
maintainers = with maintainers; [ raskin ]; maintainers = with maintainers; [ ninjin raskin ];
platforms = with platforms; linux; platforms = with platforms; linux;
homepage = "https://github.com/nicm/fdm"; homepage = "https://github.com/nicm/fdm";
downloadPage = "https://github.com/nicm/fdm/releases"; downloadPage = "https://github.com/nicm/fdm/releases";