summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSarah Brofeldt <sbrofeldt@gmail.com>2020-11-09 19:37:36 +0100
committerGitHub <noreply@github.com>2020-11-09 19:37:36 +0100
commit92e357dc59f8c3ebde3500dfe0c5c54021f87cb0 (patch)
tree80970919dc78d303879eb82f008cc047b28a908b /pkgs
parent147a03bcbb3a734cb344a0be82f2ee93e8218397 (diff)
parentb3e07c753289818df5e18a4f10a5121b699d73ce (diff)
downloadnixpkgs-92e357dc59f8c3ebde3500dfe0c5c54021f87cb0.tar
nixpkgs-92e357dc59f8c3ebde3500dfe0c5c54021f87cb0.tar.gz
nixpkgs-92e357dc59f8c3ebde3500dfe0c5c54021f87cb0.tar.bz2
nixpkgs-92e357dc59f8c3ebde3500dfe0c5c54021f87cb0.tar.lz
nixpkgs-92e357dc59f8c3ebde3500dfe0c5c54021f87cb0.tar.xz
nixpkgs-92e357dc59f8c3ebde3500dfe0c5c54021f87cb0.tar.zst
nixpkgs-92e357dc59f8c3ebde3500dfe0c5c54021f87cb0.zip
Merge pull request #103125 from xfix/remove-freicoin
altcoins.freicoin: remove
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/blockchains/freicoin.nix41
-rw-r--r--pkgs/top-level/all-packages.nix1
2 files changed, 0 insertions, 42 deletions
diff --git a/pkgs/applications/blockchains/freicoin.nix b/pkgs/applications/blockchains/freicoin.nix
deleted file mode 100644
index cc28fff96c4..00000000000
--- a/pkgs/applications/blockchains/freicoin.nix
+++ /dev/null
@@ -1,41 +0,0 @@
-{ fetchFromGitHub, stdenv, db, boost, gmp, mpfr, qt4, qmake4Hook }:
-
-stdenv.mkDerivation rec {
-  version = "0.8.6-2";
-  pname = "freicoin";
-
-  src = fetchFromGitHub {
-    owner = "freicoin";
-    repo = "freicoin";
-    rev = "v${version}";
-    sha256 = "1v1qwv4x5agjba82s1vknmdgq67y26wzdwbmwwqavv7f7y3y860h";
-  };
-
-  enableParallelBuilding = false;
-
-  qmakeFlags = ["USE_UPNP=-"];
-
-  # I think that openssl and zlib are required, but come through other
-  # packages
-
-  preBuild = "unset AR";
-
-  installPhase = ''
-    mkdir -p $out/bin
-    cp freicoin-qt $out/bin
-  '';
-
-  nativeBuildInputs = [ qmake4Hook ];
-  buildInputs = [ db boost gmp mpfr qt4 ];
-
-  meta = with stdenv.lib; {
-    description = "Peer-to-peer currency with demurrage fee";
-    homepage = "http://freicoi.in/";
-    license = licenses.mit;
-    maintainers = [ maintainers.viric ];
-    platforms = platforms.linux;
-
-    # upstream doesn't support newer openssl versions, use 1.0.1 for testing
-    broken = true;
-  };
-}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index d2d7c0c1aac..3f431626c38 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -24896,7 +24896,6 @@ in
 
   exodus = callPackage ../applications/blockchains/exodus { };
 
-  freicoin = callPackage ../applications/blockchains/freicoin.nix { boost = boost155; };
   go-ethereum = callPackage ../applications/blockchains/go-ethereum.nix {
     inherit (darwin) libobjc;
     inherit (darwin.apple_sdk.frameworks) IOKit;