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.
35 lines
784 B
Nix
35 lines
784 B
Nix
{ lib, stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fsatrace";
|
|
version = "0.0.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jacereda";
|
|
repo = "fsatrace";
|
|
rev = "5af79511828ca6cea4e5dd9f28e1676fb0b705e9";
|
|
"hash" = "sha256-pn07qlrRaM153znEviziuKWrkX9cLsNFCujovmE4UUA=";
|
|
};
|
|
|
|
installDir = "libexec/${pname}-${version}";
|
|
|
|
makeFlags = [ "INSTALLDIR=$(out)/$(installDir)" ];
|
|
|
|
preInstall = ''
|
|
mkdir -p $out/$installDir
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/bin
|
|
ln -s $out/$installDir/fsatrace $out/bin/fsatrace
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/jacereda/fsatrace";
|
|
description = "filesystem access tracer";
|
|
mainProgram = "fsatrace";
|
|
license = licenses.isc;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|