nixpkgs/pkgs/tools/misc/frei/default.nix

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

27 lines
541 B
Nix
Raw Normal View History

2022-10-29 19:58:34 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "frei";
version = "0.1.0";
src = fetchFromGitHub {
owner = "alexcoder04";
repo = "frei";
rev = "v${version}";
sha256 = "sha256-9CV6B7fRHXl73uI2JRv3RiaFczLHHBOd7/8UoCAwK6w=";
};
vendorSha256 = null;
2022-10-29 19:58:34 +00:00
meta = with lib; {
description = "Modern replacement for free";
homepage = "https://github.com/alexcoder04/frei";
license = licenses.gpl3Only;
maintainers = with maintainers; [ infinidoge ];
mainProgram = "frei";
};
}