We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dec2d71 commit dbb01e8Copy full SHA for dbb01e8
atuin.nix
@@ -10,7 +10,7 @@
10
installShellFiles,
11
rustPlatform,
12
libiconv,
13
- gitRev ? "dirty",
+ gitRev,
14
}:
15
let
16
fs = lib.fileset;
@@ -28,7 +28,7 @@ let
28
29
in
30
rustPlatform.buildRustPackage {
31
- name = "atuin";
+ pname = "atuin";
32
version = "${packageVersion}-unstable-${gitRev}";
33
34
src = fs.toSource {
flake.nix
@@ -91,8 +91,7 @@
91
{
92
atuin = final.callPackage ./atuin.nix {
93
inherit rustPlatform;
94
- gitRev = self.shortRev;
95
- inherit (final.darwin.apple_sdk.frameworks) Security SystemConfiguration AppKit;
+ gitRev = self.shortRev or "dirty";
96
};
97
98
default = self.overlays.atuin;
0 commit comments