summary refs log tree commit diff
path: root/pkgs/development/tools/ats-acc/default.nix
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2021-05-20 22:11:42 -0700
committerJonathan Ringer <jonringer117@gmail.com>2021-05-20 22:11:42 -0700
commit6b15fdce86eddd5d23ff448f6a7b50b319c5e686 (patch)
tree22d541647a440d8fbaabc0ec869a551ce02ff671 /pkgs/development/tools/ats-acc/default.nix
parent34a05e29f119bf06fe218b761b3999e4c7a87e65 (diff)
parent788deaad9dbc27b94c0d930b617f659e71ea7987 (diff)
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
 pkgs/shells/ion/default.nix
 pkgs/tools/misc/cicero-tui/default.nix
Diffstat (limited to 'pkgs/development/tools/ats-acc/default.nix')
-rw-r--r--pkgs/development/tools/ats-acc/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/tools/ats-acc/default.nix b/pkgs/development/tools/ats-acc/default.nix
new file mode 100644
index 0000000000000..73e475da3942b
--- /dev/null
+++ b/pkgs/development/tools/ats-acc/default.nix
@@ -0,0 +1,22 @@
+{ lib, stdenv, fetchFromGitHub, ats2 }:
+
+stdenv.mkDerivation rec {
+  pname = "ats-acc";
+  version = "unstable-2018-10-21";
+
+  src = fetchFromGitHub {
+    owner = "sparverius";
+    repo = pname;
+    rev = "2d49f4e76d0fe1f857ceb70deba4aed13c306dcb";
+    sha256 = "sha256-Wp39488YNL40GKp4KaJwhi75PsYP+gMtrZqAvs4Q/sw=";
+  };
+
+  nativeBuildInputs = [ ats2 ];
+
+  meta = with lib; {
+    description = "Pretty-print error messages of the ATS Compiler";
+    homepage = "https://github.com/sparverius/ats-acc";
+    maintainers = with maintainers; [ fortuneteller2k ];
+    license = licenses.unfree; # Upstream has no license
+  };
+}