freicoin: 0.8.3-1 -> 0.8.6-2; Moved to correct category
This commit is contained in:
parent
040b86a96e
commit
375639518d
@ -16,6 +16,7 @@ rec {
|
|||||||
dogecoin = callPackage ./dogecoin.nix { withGui = true; };
|
dogecoin = callPackage ./dogecoin.nix { withGui = true; };
|
||||||
dogecoind = callPackage ./dogecoin.nix { withGui = false; };
|
dogecoind = callPackage ./dogecoin.nix { withGui = false; };
|
||||||
|
|
||||||
|
freicoin = callPackage ../freicoin.nix { boost = boost155; };
|
||||||
go-ethereum = callPackage ./go-ethereum.nix { };
|
go-ethereum = callPackage ./go-ethereum.nix { };
|
||||||
|
|
||||||
litecoin = callPackage ./litecoin.nix { withGui = true; };
|
litecoin = callPackage ./litecoin.nix { withGui = true; };
|
||||||
|
32
pkgs/applications/altcoins/freicoin.nix
Normal file
32
pkgs/applications/altcoins/freicoin.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ fetchFromGitHub, stdenv, db, boost, gmp, mpfr, miniupnpc, qt4, qmake4Hook, unzip }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "0.8.6-2";
|
||||||
|
name = "freicoin-${version}";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "freicoin";
|
||||||
|
repo = "freicoin";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1m5pcnfhwhcj7q00p2sy3h73rkdm3w6grmljgiq53gshcj08cq1z";
|
||||||
|
};
|
||||||
|
|
||||||
|
# I think that openssl and zlib are required, but come through other
|
||||||
|
# packages
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
cp freicoin-qt $out/bin
|
||||||
|
'';
|
||||||
|
|
||||||
|
nativeBuildInputs = [ qmake4Hook ];
|
||||||
|
buildInputs = [ db boost gmp mpfr miniupnpc 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;
|
||||||
|
};
|
||||||
|
}
|
@ -1,28 +0,0 @@
|
|||||||
{ fetchurl, stdenv, db, boost, gmp, mpfr, miniupnpc, qt4, qmake4Hook, unzip }:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
version = "0.8.3-1";
|
|
||||||
name = "freicoin-${version}";
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "https://github.com/freicoin/freicoin/archive/v${version}.zip";
|
|
||||||
sha256 = "0v3mh8a96nnb86mkyaylyjj7qfdrl7i9gvybh7f8w2hrl9paszfh";
|
|
||||||
};
|
|
||||||
|
|
||||||
# I think that openssl and zlib are required, but come through other
|
|
||||||
# packages
|
|
||||||
buildInputs = [ db boost gmp mpfr miniupnpc qt4 unzip qmake4Hook ];
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
mkdir -p $out/bin
|
|
||||||
cp freicoin-qt $out/bin
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Peer-to-peer currency with demurrage fee";
|
|
||||||
homepage = "http://freicoi.in/";
|
|
||||||
license = stdenv.lib.licenses.mit;
|
|
||||||
maintainers = with stdenv.lib.maintainers; [viric];
|
|
||||||
platforms = with stdenv.lib.platforms; linux;
|
|
||||||
};
|
|
||||||
}
|
|
@ -13771,10 +13771,6 @@ with pkgs;
|
|||||||
ffmpeg = ffmpeg_1;
|
ffmpeg = ffmpeg_1;
|
||||||
};
|
};
|
||||||
|
|
||||||
freicoin = callPackage ../applications/misc/freicoin {
|
|
||||||
boost = boost155;
|
|
||||||
};
|
|
||||||
|
|
||||||
fte = callPackage ../applications/editors/fte { };
|
fte = callPackage ../applications/editors/fte { };
|
||||||
|
|
||||||
game-music-emu = callPackage ../applications/audio/game-music-emu { };
|
game-music-emu = callPackage ../applications/audio/game-music-emu { };
|
||||||
|
Loading…
Reference in New Issue
Block a user