Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created July 4, 2018 05:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/921992f726772b72a0e2ccd9591141b1 to your computer and use it in GitHub Desktop.
Save ryantm/921992f726772b72a0e2ccd9591141b1 to your computer and use it in GitHub Desktop.
/nix/store/r959bxd7pgfd9crp3fagw4x6j6pl105l-meson-0.47.0
├── bin
│   ├── meson
│   ├── mesonconf
│   ├── mesonintrospect
│   ├── mesontest
│   └── wraptool
├── lib
│   └── python3.6
│   └── site-packages
│   ├── meson-0.47.0.dist-info
│   │   ├── INSTALLER
│   │   ├── METADATA
│   │   ├── RECORD
│   │   ├── top_level.txt
│   │   └── WHEEL
│   └── mesonbuild
│   ├── astinterpreter.py
│   ├── backend
│   │   ├── backends.py
│   │   ├── __init__.py
│   │   ├── ninjabackend.py
│   │   ├── __pycache__
│   │   │   ├── backends.cpython-36.pyc
│   │   │   ├── __init__.cpython-36.pyc
│   │   │   ├── ninjabackend.cpython-36.pyc
│   │   │   ├── vs2010backend.cpython-36.pyc
│   │   │   ├── vs2015backend.cpython-36.pyc
│   │   │   ├── vs2017backend.cpython-36.pyc
│   │   │   └── xcodebackend.cpython-36.pyc
│   │   ├── vs2010backend.py
│   │   ├── vs2015backend.py
│   │   ├── vs2017backend.py
│   │   └── xcodebackend.py
│   ├── build.py
│   ├── compilers
│   │   ├── compilers.py
│   │   ├── cpp.py
│   │   ├── c.py
│   │   ├── cs.py
│   │   ├── d.py
│   │   ├── fortran.py
│   │   ├── __init__.py
│   │   ├── java.py
│   │   ├── objcpp.py
│   │   ├── objc.py
│   │   ├── __pycache__
│   │   │   ├── c.cpython-36.pyc
│   │   │   ├── compilers.cpython-36.pyc
│   │   │   ├── cpp.cpython-36.pyc
│   │   │   ├── cs.cpython-36.pyc
│   │   │   ├── d.cpython-36.pyc
│   │   │   ├── fortran.cpython-36.pyc
│   │   │   ├── __init__.cpython-36.pyc
│   │   │   ├── java.cpython-36.pyc
│   │   │   ├── objc.cpython-36.pyc
│   │   │   ├── objcpp.cpython-36.pyc
│   │   │   ├── rust.cpython-36.pyc
│   │   │   ├── swift.cpython-36.pyc
│   │   │   └── vala.cpython-36.pyc
│   │   ├── rust.py
│   │   ├── swift.py
│   │   └── vala.py
│   ├── coredata.py
│   ├── dependencies
│   │   ├── base.py
│   │   ├── boost.py
│   │   ├── dev.py
│   │   ├── __init__.py
│   │   ├── misc.py
│   │   ├── platform.py
│   │   ├── __pycache__
│   │   │   ├── base.cpython-36.pyc
│   │   │   ├── boost.cpython-36.pyc
│   │   │   ├── dev.cpython-36.pyc
│   │   │   ├── __init__.cpython-36.pyc
│   │   │   ├── misc.cpython-36.pyc
│   │   │   ├── platform.cpython-36.pyc
│   │   │   └── ui.cpython-36.pyc
│   │   └── ui.py
│   ├── environment.py
│   ├── __init__.py
│   ├── interpreterbase.py
│   ├── interpreter.py
│   ├── linkers.py
│   ├── mconf.py
│   ├── mesonlib.py
│   ├── mesonmain.py
│   ├── minit.py
│   ├── minstall.py
│   ├── mintro.py
│   ├── mlog.py
│   ├── modules
│   │   ├── gnome.py
│   │   ├── i18n.py
│   │   ├── __init__.py
│   │   ├── modtest.py
│   │   ├── pkgconfig.py
│   │   ├── __pycache__
│   │   │   ├── gnome.cpython-36.pyc
│   │   │   ├── i18n.cpython-36.pyc
│   │   │   ├── __init__.cpython-36.pyc
│   │   │   ├── modtest.cpython-36.pyc
│   │   │   ├── pkgconfig.cpython-36.pyc
│   │   │   ├── python3.cpython-36.pyc
│   │   │   ├── python.cpython-36.pyc
│   │   │   ├── qt4.cpython-36.pyc
│   │   │   ├── qt5.cpython-36.pyc
│   │   │   ├── qt.cpython-36.pyc
│   │   │   ├── rpm.cpython-36.pyc
│   │   │   ├── unstable_icestorm.cpython-36.pyc
│   │   │   ├── unstable_simd.cpython-36.pyc
│   │   │   └── windows.cpython-36.pyc
│   │   ├── python3.py
│   │   ├── python.py
│   │   ├── qt4.py
│   │   ├── qt5.py
│   │   ├── qt.py
│   │   ├── rpm.py
│   │   ├── unstable_icestorm.py
│   │   ├── unstable_simd.py
│   │   └── windows.py
│   ├── mparser.py
│   ├── mtest.py
│   ├── optinterpreter.py
│   ├── __pycache__
│   │   ├── astinterpreter.cpython-36.pyc
│   │   ├── build.cpython-36.pyc
│   │   ├── coredata.cpython-36.pyc
│   │   ├── environment.cpython-36.pyc
│   │   ├── __init__.cpython-36.pyc
│   │   ├── interpreterbase.cpython-36.pyc
│   │   ├── interpreter.cpython-36.pyc
│   │   ├── linkers.cpython-36.pyc
│   │   ├── mconf.cpython-36.pyc
│   │   ├── mesonlib.cpython-36.pyc
│   │   ├── mesonmain.cpython-36.pyc
│   │   ├── minit.cpython-36.pyc
│   │   ├── minstall.cpython-36.pyc
│   │   ├── mintro.cpython-36.pyc
│   │   ├── mlog.cpython-36.pyc
│   │   ├── mparser.cpython-36.pyc
│   │   ├── mtest.cpython-36.pyc
│   │   ├── optinterpreter.cpython-36.pyc
│   │   └── rewriter.cpython-36.pyc
│   ├── rewriter.py
│   ├── scripts
│   │   ├── cleantrees.py
│   │   ├── commandrunner.py
│   │   ├── coverage.py
│   │   ├── delwithsuffix.py
│   │   ├── depfixer.py
│   │   ├── dirchanger.py
│   │   ├── dist.py
│   │   ├── gettext.py
│   │   ├── gtkdochelper.py
│   │   ├── __init__.py
│   │   ├── meson_exe.py
│   │   ├── msgfmthelper.py
│   │   ├── __pycache__
│   │   │   ├── cleantrees.cpython-36.pyc
│   │   │   ├── commandrunner.cpython-36.pyc
│   │   │   ├── coverage.cpython-36.pyc
│   │   │   ├── delwithsuffix.cpython-36.pyc
│   │   │   ├── depfixer.cpython-36.pyc
│   │   │   ├── dirchanger.cpython-36.pyc
│   │   │   ├── dist.cpython-36.pyc
│   │   │   ├── gettext.cpython-36.pyc
│   │   │   ├── gtkdochelper.cpython-36.pyc
│   │   │   ├── __init__.cpython-36.pyc
│   │   │   ├── meson_exe.cpython-36.pyc
│   │   │   ├── msgfmthelper.cpython-36.pyc
│   │   │   ├── regen_checker.cpython-36.pyc
│   │   │   ├── scanbuild.cpython-36.pyc
│   │   │   ├── symbolextractor.cpython-36.pyc
│   │   │   ├── uninstall.cpython-36.pyc
│   │   │   ├── vcstagger.cpython-36.pyc
│   │   │   └── yelphelper.cpython-36.pyc
│   │   ├── regen_checker.py
│   │   ├── scanbuild.py
│   │   ├── symbolextractor.py
│   │   ├── uninstall.py
│   │   ├── vcstagger.py
│   │   └── yelphelper.py
│   └── wrap
│   ├── __init__.py
│   ├── __pycache__
│   │   ├── __init__.cpython-36.pyc
│   │   ├── wrap.cpython-36.pyc
│   │   └── wraptool.cpython-36.pyc
│   ├── wrap.py
│   └── wraptool.py
├── nix-support
│   ├── propagated-build-inputs
│   └── setup-hook
└── share
├── man
│   └── man1
│   ├── meson.1.gz
│   ├── mesonconf.1.gz
│   ├── mesonintrospect.1.gz
│   ├── mesontest.1.gz
│   └── wraptool.1.gz
└── polkit-1
└── actions
└── com.mesonbuild.install.policy
25 directories, 180 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment