nixpkgs/pkgs/by-name/vu/vul/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
636 B
Nix
Raw Normal View History

2021-06-20 21:37:44 +00:00
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "vul";
2022-09-18 15:01:27 +00:00
version = "unstable-2022-07-02";
2021-06-20 21:37:44 +00:00
src = fetchFromGitHub {
owner = "LukeSmithxyz";
repo = pname;
2022-09-18 15:01:27 +00:00
rev = "97efaedb79c9de62b6a19b04649fd8c00b85973f";
sha256 = "sha256-NwRUx7WVvexrCdPtckq4Szf5ISy7NVBHX8uAsRtbE+0=";
2021-06-20 21:37:44 +00:00
};
makeFlags = [
"PREFIX=${placeholder "out"}"
];
meta = with lib; {
description = "Latin Vulgate Bible on the Command Line";
homepage = "https://github.com/LukeSmithxyz/vul";
license = licenses.publicDomain;
2022-09-18 15:01:27 +00:00
maintainers = [ maintainers.j0hax maintainers.cafkafk ];
2024-02-11 02:19:15 +00:00
mainProgram = "vul";
2021-06-20 21:37:44 +00:00
};
}