Merge pull request #28715 from NeQuissimus/shallot

shallot: init at 0.0.3
This commit is contained in:
Franz Pletz 2017-08-30 01:26:48 +02:00 committed by GitHub
commit 4c82835f3f
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{
stdenv, fetchFromGitHub,
openssl
}:
let
version = "0.0.3";
in stdenv.mkDerivation {
name = "shallot-${version}";
src = fetchFromGitHub {
owner = "katmagic";
repo = "Shallot";
rev = "shallot-${version}";
sha256 = "0cjafdxvjkwb9vyifhh11mw0la7yfqswqwqmrfp1fy9jl7m0il9k";
};
buildInputs = [ openssl ];
installPhase = ''
mkdir -p $out/bin
cp ./shallot $out/bin/
'';
meta = {
description = "Shallot allows you to create customized .onion addresses for your hidden service";
license = stdenv.lib.licenses.mit;
homepage = https://github.com/katmagic/Shallot;
platforms = stdenv.lib.platforms.unix;
};
}

View File

@ -7305,6 +7305,8 @@ with pkgs;
sbt-with-scala-native = callPackage ../development/tools/build-managers/sbt/scala-native.nix { }; sbt-with-scala-native = callPackage ../development/tools/build-managers/sbt/scala-native.nix { };
simpleBuildTool = sbt; simpleBuildTool = sbt;
shallot = callPackage ../tools/misc/shallot { };
shards = callPackage ../development/tools/build-managers/shards { }; shards = callPackage ../development/tools/build-managers/shards { };
shellcheck = haskell.lib.justStaticExecutables haskellPackages.ShellCheck; shellcheck = haskell.lib.justStaticExecutables haskellPackages.ShellCheck;