mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
46 lines
1.3 KiB
Nix
46 lines
1.3 KiB
Nix
{ stdenv, fetchFromGitHub, fetchpatch
|
|
, openssl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "shallot";
|
|
version = "0.0.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "katmagic";
|
|
repo = "Shallot";
|
|
rev = "shallot-${version}";
|
|
sha256 = "0cjafdxvjkwb9vyifhh11mw0la7yfqswqwqmrfp1fy9jl7m0il9k";
|
|
};
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
url = "https://github.com/katmagic/Shallot/commit/c913088dfaaaf249494514f20a62f2a17b5c6606.patch";
|
|
sha256 = "19l1ppbxpdb0736f7plhybj08wh6rqk1lr3bxsp8jpzpnkh114b2";
|
|
})
|
|
(fetchpatch {
|
|
url = "https://github.com/katmagic/Shallot/commit/cd6628d97b981325e700a38f408a43df426fd569.patch";
|
|
sha256 = "1gaffp5wp1l5p2qdk0ix3i5fhzpx4xphl0haa6ajhqn8db7hbr9y";
|
|
})
|
|
(fetchpatch {
|
|
url = "https://github.com/katmagic/Shallot/commit/5c7c1ccecbbad5a121c50ba7153cbbee7ee0ebf9.patch";
|
|
sha256 = "1zmll4iqz39zwk8vj40n1dpvyq3403l64p2127gsjgh2l2v91s4k";
|
|
})
|
|
];
|
|
|
|
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.linux;
|
|
};
|
|
}
|