-
-
Notifications
You must be signed in to change notification settings - Fork 14.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #328651 from scientiac/master
haylxon: init at 1.0.0
- Loading branch information
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18164,6 +18164,12 @@ | |
githubId = 4983935; | ||
keys = [ { fingerprint = "30BB FF3F AB0B BB3E 0435 F83C 8E8F F66E 2AE8 D970"; } ]; | ||
}; | ||
scientiac = { | ||
email = "[email protected]"; | ||
name = "Spandan Guragain"; | ||
github = "scientiac"; | ||
githubId = 58177655; | ||
}; | ||
scm2342 = { | ||
name = "Sven Mattsen"; | ||
email = "[email protected]"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
lib, | ||
rustPlatform, | ||
fetchCrate, | ||
stdenv, | ||
darwin, | ||
}: | ||
|
||
rustPlatform.buildRustPackage rec { | ||
pname = "haylxon"; | ||
version = "1.0.0"; | ||
|
||
src = fetchCrate { | ||
inherit version; | ||
pname = "hxn"; | ||
hash = "sha256-zAqYaPtbXqC1YFzCL8EwE1HhuSqVl5lAfnAftwBvnoE="; | ||
}; | ||
|
||
cargoHash = "sha256-6vVsm4gdcFCxKvvmOi3wlHkFoZp8CG+u50NfxIZqCl8="; | ||
|
||
buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ]; | ||
|
||
meta = { | ||
description = "Save screenshots of urls and webpages from terminal"; | ||
homepage = "https://github.com/pwnwriter/haylxon"; | ||
license = lib.licenses.mit; | ||
maintainers = with lib.maintainers; [ scientiac ]; | ||
mainProgram = "hxn"; | ||
}; | ||
} |