summary refs log tree commit diff
path: root/pkgs/tools/misc/keychain
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2008-04-23 10:51:23 +0000
committerMarc Weber <marco-oweber@gmx.de>2008-04-23 10:51:23 +0000
commit454b9875d4852028585477cb69dbdef288666350 (patch)
tree333178948a1439a6956244d6e66b15795573ef79 /pkgs/tools/misc/keychain
parentfc56e695903cd4c8e1dc597d46a92e261b3532e1 (diff)
downloadnixpkgs-454b9875d4852028585477cb69dbdef288666350.tar
nixpkgs-454b9875d4852028585477cb69dbdef288666350.tar.gz
nixpkgs-454b9875d4852028585477cb69dbdef288666350.tar.bz2
nixpkgs-454b9875d4852028585477cb69dbdef288666350.tar.lz
nixpkgs-454b9875d4852028585477cb69dbdef288666350.tar.xz
nixpkgs-454b9875d4852028585477cb69dbdef288666350.tar.zst
nixpkgs-454b9875d4852028585477cb69dbdef288666350.zip
added keychain, a gentoo tool to start gnupg and ssh daemon writing pids to a file so that you can share them easily on different shells
svn path=/nixpkgs/trunk/; revision=11693
Diffstat (limited to 'pkgs/tools/misc/keychain')
-rw-r--r--pkgs/tools/misc/keychain/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/tools/misc/keychain/default.nix b/pkgs/tools/misc/keychain/default.nix
new file mode 100644
index 00000000000..54c50c15d23
--- /dev/null
+++ b/pkgs/tools/misc/keychain/default.nix
@@ -0,0 +1,24 @@
+args:
+args.stdenv.mkDerivation {
+  name = "keychain-2.6.6";
+
+  src = args.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
+  ";
+
+  buildInputs =(with args; []);
+
+  meta = { 
+      description = "tool starting ssh and gpg management tool";
+      homepage = "http://www.gentoo.org/proj/en/keychain/";
+      license = "GPL2";
+  };
+}