summary refs log tree commit diff
path: root/pkgs/tools/misc/mates/default.nix
blob: 952bd1a2b7d9942f1d18f9ef3d694b7232aa4d59 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchFromGitHub, rustPlatform }:

with rustPlatform;

buildRustPackage rec {
  name = "mates-${version}";
  version = "0.1.0";

  depsSha256 = "03mqw9zs3hbsgz8m3qbrbbcg2q47nldfx280dyv0ivfksnlc7lyc";

  src = fetchFromGitHub {
    owner = "untitaker";
    repo = "mates";
    rev = "${version}";
    sha256 = "00dpl7vh2byb4v94zxjbcqj7jnq65vcbrlpkxrrii0ip13dr69pw";
  };

  meta = with stdenv.lib; {
    description = "Very simple commandline addressbook";
    homepage = https://github.com/untitaker/mates.rs;
    license = stdenv.lib.licenses.mit;
    maintainers = [ maintainers.DamienCassou ];
  };
}