about summary refs log tree commit diff
path: root/pkgs/by-name/db/dbd/package.nix
blob: 20658b4d716db943872a036cdeaa5a19d97f261e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib
, stdenv
, fetchFromGitHub
}:

stdenv.mkDerivation {
  pname = "dbd";
  version = "1.50-unstable-2016-01-04";

  src = fetchFromGitHub {
    owner = "gitdurandal";
    repo = "dbd";
    rev = "8cf5350781b6753fcdd863148a5dcc6976e693ca";
    hash = "sha256-b2yBZ2/Ab+SviKNlyZgdfiZ7GGZ1sonZnblD0i+vuFw=";
  };

  makeFlags = [
    "PREFIX=${placeholder "out"}"
    "CC=${stdenv.cc.targetPrefix}cc"
  ] ++ lib.optionals stdenv.isDarwin [ "darwin" ] ++ lib.optionals (stdenv.hostPlatform.isUnix && !stdenv.isDarwin) [ "unix" ];

  meta = with lib; {
    description = "Netcat-clone, designed to be portable and offer strong encryption";
    mainProgram = "dbd";
    homepage = "https://github.com/gitdurandal/dbd";
    maintainers = with maintainers; [ d3vil0p3r ];
    platforms = platforms.unix;
    license = licenses.gpl2Plus;
  };
}