notbit: Add Package
This commit is contained in:
parent
4c226fb88a
commit
635cb24bb1
24
pkgs/applications/networking/notbit/default.nix
Normal file
24
pkgs/applications/networking/notbit/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchgit, autoconf, automake, pkgconfig, openssl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "notbit-0.2-28-g06f9160";
|
||||
|
||||
src = fetchgit {
|
||||
url = "git://git.busydoingnothing.co.uk/notbit";
|
||||
rev = "06f916081836de12f8e57a9f50c95d4d1b51627f";
|
||||
sha256 = "d5c38eea1d9ca213bfbea5c88350478a5088b5532e939de9680d72e60aa65288";
|
||||
};
|
||||
|
||||
buildInputs = [ autoconf automake pkgconfig openssl ];
|
||||
|
||||
preConfigure = "autoreconf -vfi";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://busydoingnothing.co.uk/notbit/;
|
||||
description = "A minimal bitmessage client";
|
||||
license = licenses.mit;
|
||||
|
||||
# This is planned to change when the project officially supports other platforms
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -1521,6 +1521,8 @@ let
|
||||
inherit (pythonPackages) pysqlite;
|
||||
};
|
||||
|
||||
notbit = callPackage ../applications/networking/notbit { };
|
||||
|
||||
nss_pam_ldapd = callPackage ../tools/networking/nss-pam-ldapd {};
|
||||
|
||||
ntfs3g = callPackage ../tools/filesystems/ntfs-3g { };
|
||||
|
Loading…
Reference in New Issue
Block a user