about summary refs log tree commit diff
path: root/pkgs/tools/misc/beats/default.nix
blob: 9b387a3939d5a6aa2e9fc4b5615efb58bca20012 (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
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "beats";
  version = "1.1";

  src = fetchFromGitHub {
    owner = "j0hax";
    repo = "beats";
    rev = "v${version}";
    sha256 = "1rdvsqrjpily74y8vwch711401585xckb4p41cfwrmj6vf44jhif";
  };

  makeFlags = [ "PREFIX=$(out)" "CC=cc" ];

  meta = with lib; {
    homepage = "https://github.com/j0hax/beats";
    license = licenses.gpl3Only;
    description = "Swatch Internet Time implemented as a C program";
    platforms = platforms.all;
    maintainers = [ maintainers.j0hax ];
  };
}