mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
41 lines
1.3 KiB
Nix
41 lines
1.3 KiB
Nix
{ stdenv, lib, fetchFromGitHub, bash, wget, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ipfetch";
|
|
version = "unstable-2024-02-02";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "trakBan";
|
|
repo = "ipfetch";
|
|
rev = "09b61e0d1d316dbcfab798dd00bc3f9ceb02431d";
|
|
sha256 = "sha256-RlbNIDRuf4sFS2zw4fIkTu0mB7xgJfPMDIk1I3UYXLk=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
buildInputs = [ bash wget ];
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
postPatch = ''
|
|
patchShebangs --host ipfetch
|
|
# 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.
|
|
substituteInPlace ./ipfetch --replace /usr/share/ipfetch $out/usr/share/ipfetch/flags
|
|
'';
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
mkdir -p $out/usr/share/ipfetch/
|
|
cp -r flags $out/usr/share/ipfetch/
|
|
cp ipfetch $out/bin/ipfetch
|
|
wrapProgram $out/bin/ipfetch --prefix PATH : ${
|
|
lib.makeBinPath [ bash wget ]
|
|
}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Neofetch but for ip addresses";
|
|
mainProgram = "ipfetch";
|
|
homepage = "https://github.com/trakBan/ipfetch";
|
|
license = licenses.gpl3Only;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ annaaurora ];
|
|
};
|
|
}
|