1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 07:00:43 +00:00
nixpkgs/pkgs/applications/networking/mailreaders/notmuch-addrlookup/default.nix
2016-01-09 17:08:17 -05:00

32 lines
726 B
Nix

{ stdenv, fetchFromGitHub, pkgconfig, glib, notmuch }:
stdenv.mkDerivation rec {
name = "notmuch-addrlookup-${version}";
version = "7";
src = fetchFromGitHub {
owner = "aperezdc";
repo = "notmuch-addrlookup-c";
rev ="v${version}";
sha256 = "0mz0llf1ggl1k46brgrqj3i8qlg1ycmkc5a3a0kg8fg4s1c1m6xk";
};
buildInputs = [ pkgconfig glib notmuch ];
installPhase = ''
mkdir -p "$out/bin"
cp notmuch-addrlookup "$out/bin"
'';
meta = with stdenv.lib; {
description = "Address lookup tool for Notmuch in C";
homepage = https://github.com/aperezdc/notmuch-addrlookup-c;
maintainers = with maintainers; [ mog ];
platforms = platforms.linux;
license = licenses.mit;
};
}