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

# This isn't a full nix-shell environment - you still need to run ./_scripts/init.sh,
# but this shell.nix will, at least, bootstrap the ruby environment.
let
nixpkgs = import ./nixpin.nix {};
nodePkgs = nixpkgs.pkgs.nodePackages;
ui = nixpkgs.stdenv.mkDerivation rec {
name = "tinymce-docs";
version = "0.3.0.0";
src = ./.;
buildInputs = [
nixpkgs.ruby
nixpkgs.zlib
];
};
in ui