Skip to content

Instantly share code, notes, and snippets.

@aespinosa
Last active October 30, 2016 13:38
Show Gist options
  • Save aespinosa/b38b753382c4c99d90db5b1a662722c8 to your computer and use it in GitHub Desktop.
Save aespinosa/b38b753382c4c99d90db5b1a662722c8 to your computer and use it in GitHub Desktop.
nix-store -q --tree /nix/store/c4xb0czlr9dy9j0nln9mxijylblr4vmj-cpu-app/bin/app
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "cpu-app";
enableSharedExecutables = false;
buildInputs = [
(haskellPackages.ghcWithPackages (p: [p.yesod ]))
];
src = ./.;
buildCommand = ''
cp $src/app.hs app.hs
mkdir -p $out/bin
ghc app.hs -o $out/bin/app
'';
}
/nix/store/c4xb0czlr9dy9j0nln9mxijylblr4vmj-cpu-app
+---/nix/store/1jwkjzrivp541v5ibgzb4wc2avla5zx9-glibc-2.24
| +---/nix/store/1jwkjzrivp541v5ibgzb4wc2avla5zx9-glibc-2.24 [...]
+---/nix/store/9nw5abnvdw91vrgv1z9x06560nxhyka8-gcc-5.4.0-lib
| +---/nix/store/1jwkjzrivp541v5ibgzb4wc2avla5zx9-glibc-2.24 [...]
| +---/nix/store/9nw5abnvdw91vrgv1z9x06560nxhyka8-gcc-5.4.0-lib [...]
+---/nix/store/1pc3rhrzhfnj5fbwsw26gcqi79zckzfp-gmp-6.1.1
| +---/nix/store/1jwkjzrivp541v5ibgzb4wc2avla5zx9-glibc-2.24 [...]
| +---/nix/store/9nw5abnvdw91vrgv1z9x06560nxhyka8-gcc-5.4.0-lib [...]
| +---/nix/store/1pc3rhrzhfnj5fbwsw26gcqi79zckzfp-gmp-6.1.1 [...]
+---/nix/store/9dzw8m3d6fhh3m0s392b135v3msnsr9m-libyaml-0.1.7
| +---/nix/store/1jwkjzrivp541v5ibgzb4wc2avla5zx9-glibc-2.24 [...]
| +---/nix/store/9dzw8m3d6fhh3m0s392b135v3msnsr9m-libyaml-0.1.7 [...]
+---/nix/store/qcnfkfm56yhbsnhhql5bl77rck5cqyln-zlib-1.2.8
| +---/nix/store/1jwkjzrivp541v5ibgzb4wc2avla5zx9-glibc-2.24 [...]
+---/nix/store/psmdlfqys1031hhyjhky4qphgyscmgdg-gcc-5.4.0
| +---/nix/store/1jwkjzrivp541v5ibgzb4wc2avla5zx9-glibc-2.24 [...]
| +---/nix/store/9nw5abnvdw91vrgv1z9x06560nxhyka8-gcc-5.4.0-lib [...]
| +---/nix/store/qcnfkfm56yhbsnhhql5bl77rck5cqyln-zlib-1.2.8 [...]
| +---/nix/store/s222vly64qrr3l4mqm6n3fsrkprhrnmm-glibc-2.24-dev
| | +---/nix/store/1jwkjzrivp541v5ibgzb4wc2avla5zx9-glibc-2.24 [...]
| | +---/nix/store/615w3n8ya0kffla766lryw0wypz9mgya-linux-headers-4.4.10
| | | +---/nix/store/615w3n8ya0kffla766lryw0wypz9mgya-linux-headers-4.4.10 [...]
| | +---/nix/store/8c3hr100jh0l42spjmzmll88kkjpcxnl-glibc-2.24-bin
| | +---/nix/store/1jwkjzrivp541v5ibgzb4wc2avla5zx9-glibc-2.24 [...]
| | +---/nix/store/8c3hr100jh0l42spjmzmll88kkjpcxnl-glibc-2.24-bin [...]
| +---/nix/store/psmdlfqys1031hhyjhky4qphgyscmgdg-gcc-5.4.0 [...]
+---/nix/store/c4xb0czlr9dy9j0nln9mxijylblr4vmj-cpu-app [...]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment