mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-24 05:00:19 +00:00
libsystemtap: Restrict supported platforms
To allow easy `lib.meta.availableOn stdenv.hostPlatform libsystemtap`.
This commit is contained in:
parent
bcd9f660e0
commit
062991df53
@ -36,7 +36,8 @@ stdenv.mkDerivation {
|
||||
description = "Statically defined probes development files";
|
||||
homepage = "https://sourceware.org/systemtap/";
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.unix;
|
||||
platforms = elfutils.meta.platforms or platforms.unix;
|
||||
badPlatforms = elfutils.meta.badPlatforms or [ ];
|
||||
maintainers = [ lib.maintainers.farlion ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user