Files
nixpkgs/pkgs/by-name/wh/whereami/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

52 lines
1.2 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
fixDarwinDylibNames,
}:
let
libExt = stdenv.hostPlatform.extensions.sharedLibrary;
in
stdenv.mkDerivation {
pname = "whereami";
version = "0-unstable-2022-02-18";
src = fetchFromGitHub {
owner = "gpakosz";
repo = "whereami";
rev = "ba364cd54fd431c76c045393b6522b4bff547f50";
sha256 = "XhRqW0wdXzlmyBf1cjqtQvztuyV4buxVl19Q0uyEOhk=";
};
nativeBuildInputs = lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=strict-prototypes";
makeFlags = [
"-C_gnu-make"
"build-library"
"binsubdir=platform"
];
installPhase = ''
runHook preInstall
mkdir -p $out/lib $out/include
cp bin/platform/library${libExt} $out/lib/libwhereami${libExt}
cp src/whereami.h $out/include/whereami.h
runHook postInstall
'';
meta = with lib; {
description = "Locate the current executable and running module/library";
homepage = "https://github.com/gpakosz/whereami";
license = with licenses; [
mit
wtfpl
];
maintainers = with maintainers; [ emilytrau ];
platforms = platforms.all;
};
}