summaryrefslogtreecommitdiff
path: root/default.nix
blob: 5998ddaba448c7a67c2848cce7810a48ef639e07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
with (import <nixpkgs> {});
let
  gems = bundlerEnv {
    name = "Personal_Website";
    inherit ruby;
    gemdir = ./.;
  };

in stdenv.mkDerivation {
  name = "Personal_Website";
  buildInputs = [ gems ruby ];
}