755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
29 lines
685 B
Nix
29 lines
685 B
Nix
{ lib, stdenv
|
|
, binutils-unwrapped-all-targets
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "libopcodes";
|
|
inherit (binutils-unwrapped-all-targets) version;
|
|
|
|
dontUnpack = true;
|
|
dontBuild = true;
|
|
dontInstall = true;
|
|
propagatedBuildInputs = [
|
|
binutils-unwrapped-all-targets.dev
|
|
binutils-unwrapped-all-targets.lib
|
|
];
|
|
|
|
passthru = {
|
|
inherit (binutils-unwrapped-all-targets) dev hasPluginAPI;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Library from binutils for manipulating machine code";
|
|
homepage = "https://www.gnu.org/software/binutils/";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ ericson2314 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|