File: shell.nix

package info (click to toggle)
balboa 2.0.0%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,284 kB
  • sloc: ansic: 10,581; makefile: 160; python: 127; sh: 60
file content (6 lines) | stat: -rw-r--r-- 220 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
{ pkgs ? import <nixpkgs> {}, unstable ? import <nixos-unstable> {} }: let 
    rocksdb = pkgs.callPackage ./lib/rocksdb.nix {};
in
  pkgs.mkShell {
    buildInputs = with pkgs; [ gcc gdb rocksdb unstable.clang_8 ];
  }