summary refs log tree commit diff
path: root/pkgs/tools/misc/keychain/default.nix
blob: 36b29083e088af261ecce6a3fc1964ea3a5f4b1b (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.6.6";

  src = fetchurl {
    url = http://gentoo.chem.wisc.edu/gentoo/distfiles/keychain-2.6.6.tar.bz2;
    sha256 = "10v0hzkgrb5cazm1gk0g4ncwp8sqvfk7xfyx59cjd69kzhbbn6ic";
  };

  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";
  };
}