summary refs log tree commit diff
path: root/pkgs/tools/misc/shallot/default.nix
blob: 279de83e817a2dabc43f94c7bd97667a84006fae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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;
  };
}