3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #127600 from j0hax/vul

This commit is contained in:
Sandro 2021-06-21 14:41:39 +02:00 committed by GitHub
commit c0ae80cd61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

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