diff options
author | Xinglu Chen <public@yoctocell.xyz> | 2021-02-04 16:55:27 +0100 |
---|---|---|
committer | Xinglu Chen <public@yoctocell.xyz> | 2021-02-04 17:02:19 +0100 |
commit | 150b33158b34ff5c23c306280ceb2290be339667 (patch) | |
tree | eb07f2d6345a0c28ea2eb6b2a71cec2a87a7d5ab | |
parent | 03027532c57682bb65642968dfc9fb8736bb9b4f (diff) |
default.nix: Use "master" instead of "git"
Make the version "master" instead of "git", this will turn the name
from "git-email-git-git” to "git-email-git-master”.
* default.nix:
-rw-r--r-- | default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/default.nix b/default.nix index 2b76d1e..765b92a 100644 --- a/default.nix +++ b/default.nix @@ -7,7 +7,7 @@ lib.recurseIntoAttrs rec { git-email-full-git = trivialBuild rec { pname = "git-email-full"; - version = "git"; + version = "master"; src = nix-gitignore.gitignoreSource (flakeRoot + ".gitignore") ./.; packageRequires = with emacsPackages; [ magit @@ -18,7 +18,7 @@ lib.recurseIntoAttrs rec { git-email-git = trivialBuild rec { pname = "git-email"; - version = "git"; + version = "master"; src = builtins.filterSource (path: type: baseNameOf path != "git-email-magit.el" && |