mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 19:03:28 +00:00
frei: init at 0.1.0
This commit is contained in:
parent
8f0c7e38cb
commit
566fb96987
26
pkgs/tools/misc/frei/default.nix
Normal file
26
pkgs/tools/misc/frei/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ 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 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Modern replacement for free";
|
||||
homepage = "https://github.com/alexcoder04/frei";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ infinidoge ];
|
||||
mainProgram = "frei";
|
||||
};
|
||||
}
|
@ -4019,6 +4019,8 @@ with pkgs;
|
||||
|
||||
frawk = callPackage ../tools/text/frawk { };
|
||||
|
||||
frei = callPackage ../tools/misc/frei { };
|
||||
|
||||
fselect = callPackage ../tools/misc/fselect { };
|
||||
|
||||
fsmon = callPackage ../tools/misc/fsmon { };
|
||||
|
Loading…
Reference in New Issue
Block a user