You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
419 B

  1. # This isn't a full nix-shell environment - you still need to run ./_scripts/init.sh,
  2. # but this shell.nix will, at least, bootstrap the ruby environment.
  3. let
  4. nixpkgs = import ./nixpin.nix {};
  5. nodePkgs = nixpkgs.pkgs.nodePackages;
  6. ui = nixpkgs.stdenv.mkDerivation rec {
  7. name = "tinymce-docs";
  8. version = "0.3.0.0";
  9. src = ./.;
  10. buildInputs = [
  11. nixpkgs.ruby
  12. nixpkgs.zlib
  13. ];
  14. };
  15. in ui