mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 19:25:58 +01:00
8b81f41e52
--------- Co-authored-by: Mihai Fufezan <fufexan@protonmail.com>
32 lines
733 B
Nix
32 lines
733 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
python3,
|
|
}:
|
|
stdenv.mkDerivation {
|
|
pname = "udis86";
|
|
version = "unstable-2022-10-13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "canihavesomecoffee";
|
|
repo = "udis86";
|
|
rev = "5336633af70f3917760a6d441ff02d93477b0c86";
|
|
hash = "sha256-HifdUQPGsKQKQprByeIznvRLONdOXeolOsU5nkwIv3g=";
|
|
};
|
|
|
|
nativeBuildInputs = [autoreconfHook python3];
|
|
|
|
configureFlags = ["--enable-shared"];
|
|
|
|
outputs = ["bin" "out" "dev" "lib"];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://udis86.sourceforge.net";
|
|
license = licenses.bsd2;
|
|
mainProgram = "udcli";
|
|
description = "Easy-to-use, minimalistic x86 disassembler library (libudis86)";
|
|
platforms = platforms.all;
|
|
};
|
|
}
|