citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

default.nix (134B)


      1 { pkgs ? import <nixpkgs> {} }:
      2 with pkgs;
      3 stdenv.mkDerivation {
      4   name = "project";
      5   nativeBuildInputs = [ cargo rustc rustfmt ];
      6 }