Skip to content

Commit

Permalink
Merge pull request #328651 from scientiac/master
Browse files Browse the repository at this point in the history
haylxon: init at 1.0.0
  • Loading branch information
gador authored Jul 22, 2024
2 parents e2ee34b + 5e164bd commit 1e05360
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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]";
Expand Down
30 changes: 30 additions & 0 deletions pkgs/by-name/ha/haylxon/package.nix
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";
};
}

0 comments on commit 1e05360

Please sign in to comment.