edited the wrong variable
This commit is contained in:
parent
ebe6cbf9d6
commit
1b55c4788e
1 changed files with 2 additions and 2 deletions
|
@ -1,14 +1,14 @@
|
|||
{ pkgs, ... }:
|
||||
let gitTemplate = pkgs.stdenv.mkDerivation {
|
||||
name = "git-template";
|
||||
src = pkgs.writeText "dummy" "";
|
||||
src = ./.;
|
||||
nativeBuildInputs = with pkgs; with rust-binaries; [
|
||||
git
|
||||
mit-commit-msg
|
||||
mit-pre-commit
|
||||
mit-prepare-commit-msg
|
||||
];
|
||||
buildPhase = ./.;
|
||||
buildPhase = "true";
|
||||
installPhase = with pkgs; with rust-binaries; ''
|
||||
git init $out
|
||||
ln -s $out/.git/hooks/commit-msg ${mit-commit-msg}/bin/mit-commit-msg
|
||||
|
|
Loading…
Reference in a new issue