summary refs log tree commit diff
path: root/pkgs/tools/misc/keychain/default.nix
blob: 881c65ef74b6c7c6922d1c0346d2888a18e15e52 (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, fetchurl }:

stdenv.mkDerivation {
  name = "keychain-2.7.1";

  src = fetchurl {
    url = mirror://gentoo/distfiles/keychain-2.7.1.tar.bz2;
    sha256 = "14ai6wjwnj09xnl81ar2dlr5kwb8y1k5ck6nc549shpng0zzw1qi";
  };

  phases = "unpackPhase buildPhase";

  buildPhase =
    ''
      mkdir -p $out/bin
      cp keychain $out/bin
    '';

  meta = { 
    description = "Keychain management tool";
    homepage = "http://www.gentoo.org/proj/en/keychain/";
    license = "GPL2";
  };
}