mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 10:53:11 +00:00
Merge pull request #4043 from ehmry/monero
monero: intial expression for 0.8.8.3
This commit is contained in:
commit
0d30a0b68f
37
pkgs/applications/misc/monero/default.nix
Normal file
37
pkgs/applications/misc/monero/default.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ stdenv, fetchurl, cmake, boost }:
|
||||
|
||||
let
|
||||
version = "0.8.8.4";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
name = "monero-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/monero-project/bitmonero/archive/v${version}.tar.gz";
|
||||
sha256 = "0bbhqjjzh922aymjqrnl2hd3r8x6p7x5aa5jidv3l4d77drhlgzy";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake boost ];
|
||||
|
||||
# these tests take a long time and don't
|
||||
# always complete in the build environment
|
||||
postPatch = "sed -i '/add_subdirectory(tests)/d' CMakeLists.txt";
|
||||
doCheck = false;
|
||||
checkTarget = "test-release"; # this would be the target
|
||||
|
||||
installPhase = ''
|
||||
installBin \
|
||||
src/bitmonerod \
|
||||
src/connectivity_tool \
|
||||
src/simpleminer \
|
||||
src/simplewallet
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Private, secure, untraceable currency";
|
||||
homepage = http://monero.cc/;
|
||||
license = licenses.bsd3;
|
||||
maintainers = [ maintainers.emery ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -9455,6 +9455,8 @@ let
|
||||
|
||||
moc = callPackage ../applications/audio/moc { };
|
||||
|
||||
monero = callPackage ../applications/misc/monero { };
|
||||
|
||||
monkeysAudio = callPackage ../applications/audio/monkeys-audio { };
|
||||
|
||||
monodevelop = callPackage ../applications/editors/monodevelop {
|
||||
|
Loading…
Reference in New Issue
Block a user