forked from mirrors/nixpkgs
Merge pull request #127600 from j0hax/vul
This commit is contained in:
commit
c0ae80cd61
24
pkgs/applications/misc/vul/default.nix
Normal file
24
pkgs/applications/misc/vul/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue