summary refs log tree commit diff
path: root/pkgs/applications/altcoins/masari.nix
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2018-03-21 17:05:40 +0100
committerFranz Pletz <fpletz@fnordicwalking.de>2018-03-22 01:05:31 +0100
commitab5f98a77e14c1245033cd7df36b78318f8c7702 (patch)
tree17c72c12998255f59f717c3dbca085d6736604ea /pkgs/applications/altcoins/masari.nix
parentf2fea9042e3777adfd42dc98c8d27cba53c38713 (diff)
downloadnixpkgs-ab5f98a77e14c1245033cd7df36b78318f8c7702.tar
nixpkgs-ab5f98a77e14c1245033cd7df36b78318f8c7702.tar.gz
nixpkgs-ab5f98a77e14c1245033cd7df36b78318f8c7702.tar.bz2
nixpkgs-ab5f98a77e14c1245033cd7df36b78318f8c7702.tar.lz
nixpkgs-ab5f98a77e14c1245033cd7df36b78318f8c7702.tar.xz
nixpkgs-ab5f98a77e14c1245033cd7df36b78318f8c7702.tar.zst
nixpkgs-ab5f98a77e14c1245033cd7df36b78318f8c7702.zip
altcoins.masari: init at 0.1.4.0
Diffstat (limited to 'pkgs/applications/altcoins/masari.nix')
-rw-r--r--pkgs/applications/altcoins/masari.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/applications/altcoins/masari.nix b/pkgs/applications/altcoins/masari.nix
new file mode 100644
index 00000000000..02a6d25df51
--- /dev/null
+++ b/pkgs/applications/altcoins/masari.nix
@@ -0,0 +1,27 @@
+{ lib, stdenv, fetchFromGitHub, cmake, pkgconfig, unbound, openssl, boost
+, lmdb, miniupnpc, readline }:
+
+stdenv.mkDerivation rec {
+  name = "masari-${version}";
+  version = "0.1.4.0";
+
+  src = fetchFromGitHub {
+    owner = "masari-project";
+    repo = "masari";
+    rev = "v${version}";
+    sha256 = "0l6i21wkq5f6z8xr756i7vqgkzk7lixaa31ydy34fkfcqxppgxz3";
+  };
+
+  nativeBuildInputs = [ cmake pkgconfig ];
+  buildInputs = [ boost miniupnpc openssl lmdb unbound readline ];
+
+  enableParallelBuilding = true;
+
+  meta = with lib; {
+    description = "scalability-focused, untraceable, secure, and fungible cryptocurrency using the RingCT protocol";
+    homepage = "https://www.getmasari.org/";
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ fpletz ];
+    platforms = platforms.linux;
+  };
+}