File: shell.nix

package info (click to toggle)
balboa 2.1.2%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,644 kB
  • sloc: ansic: 10,604; makefile: 160; python: 127; sh: 103
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 ];
  }