vul: init at unstable-2020-02-15

This commit is contained in:
Johannes Arnold 2021-06-20 23:37:44 +02:00
parent 23c5d04f56
commit ee072f6b59
2 changed files with 26 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -9820,6 +9820,8 @@ in
unrar = callPackage ../tools/archivers/unrar { };
vul = callPackage ../applications/misc/vul { };
xar = callPackage ../tools/compression/xar { };
xarchive = callPackage ../tools/archivers/xarchive { };