mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +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.
38 lines
1.0 KiB
Nix
38 lines
1.0 KiB
Nix
{ lib, stdenvNoCC, fetchFromGitHub, makeWrapper, jq, glow }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "xdg-ninja";
|
|
version = "0.2.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "b3nj5m1n";
|
|
repo = "xdg-ninja";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-ASJIFQ/BpZMQGRtw8kPhtMCbXC1eb/X8TWQz+CAnaSM=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -Dm755 xdg-ninja.sh "$out/share/xdg-ninja/xdg-ninja.sh"
|
|
install -Dm644 programs/* -t "$out/share/xdg-ninja/programs"
|
|
|
|
mkdir -p "$out/bin"
|
|
ln -s "$out/share/xdg-ninja/xdg-ninja.sh" "$out/bin/xdg-ninja"
|
|
|
|
wrapProgram "$out/bin/xdg-ninja" \
|
|
--prefix PATH : "${lib.makeBinPath [ glow jq ]}"
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Shell script which checks your $HOME for unwanted files and directories";
|
|
homepage = "https://github.com/b3nj5m1n/xdg-ninja";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ arcuru ];
|
|
mainProgram = "xdg-ninja";
|
|
};
|
|
}
|