about summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2017-05-05 18:49:06 +0200
committerRobin Gloster <mail@glob.in>2017-08-04 02:29:51 +0200
commit17cef2c5f39e55e94048331e470f10d6f32a96cd (patch)
tree31125aa6664015b6b027551ff1f4e9f7a0cc5c3d /pkgs/applications/misc
parent3d90c689cfa3a0d508c26659a86d8fca6ddbbc22 (diff)
downloadnixlib-17cef2c5f39e55e94048331e470f10d6f32a96cd.tar
nixlib-17cef2c5f39e55e94048331e470f10d6f32a96cd.tar.gz
nixlib-17cef2c5f39e55e94048331e470f10d6f32a96cd.tar.bz2
nixlib-17cef2c5f39e55e94048331e470f10d6f32a96cd.tar.lz
nixlib-17cef2c5f39e55e94048331e470f10d6f32a96cd.tar.xz
nixlib-17cef2c5f39e55e94048331e470f10d6f32a96cd.tar.zst
nixlib-17cef2c5f39e55e94048331e470f10d6f32a96cd.zip
vanitygen: remove
unmaintained and doesn't build with openssl 1.1
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/vanitygen/default.nix39
1 files changed, 0 insertions, 39 deletions
diff --git a/pkgs/applications/misc/vanitygen/default.nix b/pkgs/applications/misc/vanitygen/default.nix
deleted file mode 100644
index 462b6d0e57bb..000000000000
--- a/pkgs/applications/misc/vanitygen/default.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{ fetchgit, stdenv, openssl, pcre }:
-
-stdenv.mkDerivation rec {
-  version = "0.21";
-  name = "vanitygen-${version}";
-
-  src = fetchgit {
-    url = "https://github.com/samr7/vanitygen";
-    rev = "refs/tags/${version}";
-    sha256  = "1vzfv74hhiyrrpvjca8paydx1ashgbgn5plzrx4swyzxy1xkamah";
-  };
-
-  buildInputs = [ openssl pcre ];
-
-  installPhase = ''
-    mkdir -p $out/bin
-    cp vanitygen $out/bin
-    cp keyconv $out/bin/vanitygen-keyconv
-  '';
-
-  meta = {
-      description = "Bitcoin vanity address generator";
-      longDescription= ''
-        Vanitygen can search for exact prefixes or regular expression
-        matches, so you can generate Bitcoin addresses that starts
-        with the needed mnemonic.
-
-        Vanitygen can generate regular bitcoin addresses, namecoin
-        addresses, and testnet addresses.
-
-        When searching for exact prefixes, vanitygen will ensure that
-        the prefix is possible, will provide a difficulty estimate,
-        and will run about 30% faster.
-      '';
-      homepage = https://github.com/samr7/vanitygen;
-      license = stdenv.lib.licenses.agpl3;
-      platforms = stdenv.lib.platforms.all;
-  };
-}