writeFile -> writeText
This commit is contained in:
parent
abb7370936
commit
795c1f3d65
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
let gitTemplate = pkgs.stdenv.mkDerivation {
|
let gitTemplate = pkgs.stdenv.mkDerivation {
|
||||||
name = "git-template";
|
name = "git-template";
|
||||||
src = pkgs.writeFile "dummy" "";
|
src = pkgs.writeText "dummy" "";
|
||||||
nativeBuildInputs = with pkgs; with rust-binaries; [
|
nativeBuildInputs = with pkgs; with rust-binaries; [
|
||||||
git
|
git
|
||||||
mit-commit-msg
|
mit-commit-msg
|
||||||
|
|
Loading…
Reference in a new issue