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 a94f055 commit 4722e2bCopy full SHA for 4722e2b
pkgs/by-name/as/asciinema-agg/package.nix
@@ -3,9 +3,12 @@
3
rustPlatform,
4
fetchFromGitHub,
5
stdenv,
6
- Security,
+ darwin,
7
}:
8
9
+let
10
+ inherit (darwin.apple_sdk.frameworks) Security;
11
+in
12
rustPlatform.buildRustPackage rec {
13
pname = "agg";
14
version = "1.4.3";
@@ -14,9 +17,11 @@ rustPlatform.buildRustPackage rec {
17
owner = "asciinema";
15
18
repo = "agg";
16
19
rev = "v${version}";
- sha256 = "sha256-WCUYnveTWWQOzhIViMkSnyQ6vgLs5HDLWa/xvfZMh3A=";
20
+ hash = "sha256-WCUYnveTWWQOzhIViMkSnyQ6vgLs5HDLWa/xvfZMh3A=";
21
};
22
23
+ strictDeps = true;
24
+
25
cargoLock = {
26
lockFile = ./Cargo.lock;
27
outputHashes = {
0 commit comments