evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ip / ipfetch / package.nix
blob7f86c8a246faf6fce8c0cda845ede1e223b7cb58
1 { stdenv, lib, fetchFromGitHub, bash, wget, makeWrapper }:
3 stdenv.mkDerivation rec {
4   pname = "ipfetch";
5   version = "unstable-2024-02-02";
7   src = fetchFromGitHub {
8     owner = "trakBan";
9     repo = "ipfetch";
10     rev = "09b61e0d1d316dbcfab798dd00bc3f9ceb02431d";
11     sha256 = "sha256-RlbNIDRuf4sFS2zw4fIkTu0mB7xgJfPMDIk1I3UYXLk=";
12   };
14   strictDeps = true;
15   buildInputs = [ bash wget ];
16   nativeBuildInputs = [ makeWrapper ];
17   postPatch = ''
18     patchShebangs --host ipfetch
19     # Not only does `/usr` have to be replaced but also `/flags` needs to be added because with Nix the script is broken without this. The `/flags` is somehow not needed if you install via the install script in the source repository.
20     substituteInPlace ./ipfetch --replace /usr/share/ipfetch $out/usr/share/ipfetch/flags
21   '';
22   installPhase = ''
23     mkdir -p $out/bin
24     mkdir -p $out/usr/share/ipfetch/
25     cp -r flags $out/usr/share/ipfetch/
26     cp ipfetch $out/bin/ipfetch
27     wrapProgram $out/bin/ipfetch --prefix PATH : ${
28       lib.makeBinPath [ bash wget ]
29     }
30   '';
32   meta = with lib; {
33     description = "Neofetch but for ip addresses";
34     mainProgram = "ipfetch";
35     homepage = "https://github.com/trakBan/ipfetch";
36     license = licenses.gpl3Only;
37     platforms = platforms.all;
38     maintainers = with maintainers; [ annaaurora ];
39   };