nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 30 lines 680 B view raw
1{ 2 lib, 3 stdenv, 4 binutils-unwrapped-all-targets, 5}: 6 7stdenv.mkDerivation { 8 pname = "libopcodes"; 9 inherit (binutils-unwrapped-all-targets) version; 10 11 dontUnpack = true; 12 dontBuild = true; 13 dontInstall = true; 14 propagatedBuildInputs = [ 15 binutils-unwrapped-all-targets.dev 16 binutils-unwrapped-all-targets.lib 17 ]; 18 19 passthru = { 20 inherit (binutils-unwrapped-all-targets) dev; 21 }; 22 23 meta = { 24 description = "Library from binutils for manipulating machine code"; 25 homepage = "https://www.gnu.org/software/binutils/"; 26 license = lib.licenses.gpl3Plus; 27 maintainers = with lib.maintainers; [ ericson2314 ]; 28 platforms = lib.platforms.unix; 29 }; 30}