about summary refs log tree commit diff
path: root/pkgs/applications/misc/vul
diff options
context:
space:
mode:
authorJohannes Arnold <johannes.arnold@stud.uni-hannover.de>2021-06-20 23:37:44 +0200
committerJohannes Arnold <johannes.arnold@stud.uni-hannover.de>2021-06-21 11:50:30 +0200
commitee072f6b59fb3cf524944c702535bc59879a85e3 (patch)
tree6c07bc2c61bb891fa9517b385c27760e187fdb2f /pkgs/applications/misc/vul
parent23c5d04f5673785a0d2c3c8a5737eeea871873ee (diff)
vul: init at unstable-2020-02-15
Diffstat (limited to 'pkgs/applications/misc/vul')
-rw-r--r--pkgs/applications/misc/vul/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/misc/vul/default.nix b/pkgs/applications/misc/vul/default.nix
new file mode 100644
index 0000000000000..9acefa9394271
--- /dev/null
+++ b/pkgs/applications/misc/vul/default.nix
@@ -0,0 +1,24 @@
+{ lib, stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+  pname = "vul";
+  version = "unstable-2020-02-15";
+
+  src = fetchFromGitHub {
+    owner = "LukeSmithxyz";
+    repo = pname;
+    rev = "f6ebd8f6b6fb8a111e7b59470d6748fcbe71c559";
+    sha256 = "aUl4f82sGOWkEvTDNILDszj5hztDRvYpHVovFl4oOCc=";
+  };
+
+  makeFlags = [
+    "PREFIX=${placeholder "out"}"
+  ];
+
+  meta = with lib; {
+    description = "Latin Vulgate Bible on the Command Line";
+    homepage = "https://github.com/LukeSmithxyz/vul";
+    license = licenses.publicDomain;
+    maintainers = [ maintainers.j0hax ];
+  };
+}