nixpkgs/pkgs/tools/security/snowcrash/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
817 B
Nix
Raw Normal View History

2021-05-25 21:55:34 +00:00
{ lib
, stdenv
2021-05-25 21:55:34 +00:00
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "snowcrash";
version = "unstable-2021-04-29";
src = fetchFromGitHub {
owner = "redcode-labs";
repo = "SNOWCRASH";
rev = "514cceea1ca82f44e0c8a8744280f3a16abb6745";
sha256 = "16p1nfi9zdlcffjyrk1phrippjqrdzf3cpc51dgdy3bfr7pds2ld";
};
vendorSha256 = "sha256-YryQKLHwUDhR/Z7eWfCdL86Z83GrqBTvdGGj+dGKvjI";
2021-05-25 21:55:34 +00:00
subPackages = [ "." ];
postFixup = lib.optionals (!stdenv.isDarwin) ''
2021-05-25 21:55:34 +00:00
mv $out/bin/SNOWCRASH $out/bin/${pname}
'';
meta = with lib; {
description = "Polyglot payload generator";
homepage = "https://github.com/redcode-labs/SNOWCRASH";
license = with licenses; [ mit ];
2021-12-18 13:07:49 +00:00
maintainers = with maintainers; [ fab ] ++ teams.redcodelabs.members;
mainProgram = "SNOWCRASH";
2021-05-25 21:55:34 +00:00
};
}