mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
27 lines
541 B
Nix
27 lines
541 B
Nix
{ 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;
|
|
|
|
meta = with lib; {
|
|
description = "Modern replacement for free";
|
|
homepage = "https://github.com/alexcoder04/frei";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ infinidoge ];
|
|
mainProgram = "frei";
|
|
};
|
|
}
|