about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/beats
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/misc/beats')
-rw-r--r--nixpkgs/pkgs/tools/misc/beats/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/misc/beats/default.nix b/nixpkgs/pkgs/tools/misc/beats/default.nix
new file mode 100644
index 000000000000..a8ad2436f08c
--- /dev/null
+++ b/nixpkgs/pkgs/tools/misc/beats/default.nix
@@ -0,0 +1,24 @@
+{ 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 ];
+    mainProgram = "beats";
+  };
+}