From fe71de29aa09d80c3123c51e2844743e7109102a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phan=20Kochen?= Date: Mon, 24 Aug 2020 19:53:15 +0200 Subject: [PATCH] Add headers to generated files --- src/default.nix.in | 3 +++ src/yarn-project.nix.in | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/default.nix.in b/src/default.nix.in index 7f27755..046e40c 100644 --- a/src/default.nix.in +++ b/src/default.nix.in @@ -1,3 +1,6 @@ +# This is a minimal `default.nix` by yarn-plugin-nixify. You can customize it +# as needed, it will not be overwritten by the plugin. + { pkgs ? import {} }: pkgs.callPackage ./yarn-project.nix {} diff --git a/src/yarn-project.nix.in b/src/yarn-project.nix.in index f2eae5f..259a632 100644 --- a/src/yarn-project.nix.in +++ b/src/yarn-project.nix.in @@ -1,3 +1,6 @@ +# This file is generated by running "yarn install" inside your project. +# Manual changes might be lost - proceed with caution! + { lib, bash, nodejs, perl, stdenv, writeText }: with lib;