biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / networking / userhosts / default.nix
blob1433e0dd28ac7201c93de62fa950ccc896c8715a
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4   pname = "userhosts";
5   version = "1.0.0";
7   src = fetchFromGitHub {
8     owner = "figiel";
9     repo = "hosts";
10     rev = "v${version}";
11     hash = "sha256-9uF0fYl4Zz/Ia2UKx7CBi8ZU8jfWoBfy2QSgTSwXo5A";
12   };
14   installFlags = [ "PREFIX=$(out)" ];
16   meta = with lib; {
17     description = "Libc wrapper providing per-user hosts file";
18     homepage = "https://github.com/figiel/hosts";
19     maintainers = [ maintainers.bobvanderlinden ];
20     license = licenses.cc0;
21     platforms = platforms.linux;
22   };