summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-01-06 02:13:24 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-01-06 02:14:01 +0100
commitf30b8a91977e104c8a2474fd1e60fb30e5f816a7 (patch)
tree50e435191e5b333deadce40257ec5eec83cfcc1c /pkgs/tools/security
parentbc6f9ff90dc6441933434bdf21961e3e81c9d04b (diff)
downloadnixlib-f30b8a91977e104c8a2474fd1e60fb30e5f816a7.tar
nixlib-f30b8a91977e104c8a2474fd1e60fb30e5f816a7.tar.gz
nixlib-f30b8a91977e104c8a2474fd1e60fb30e5f816a7.tar.bz2
nixlib-f30b8a91977e104c8a2474fd1e60fb30e5f816a7.tar.lz
nixlib-f30b8a91977e104c8a2474fd1e60fb30e5f816a7.tar.xz
nixlib-f30b8a91977e104c8a2474fd1e60fb30e5f816a7.tar.zst
nixlib-f30b8a91977e104c8a2474fd1e60fb30e5f816a7.zip
muscletool: remove dead package
Broken since 2013. Upstream don't smell too good since 2009.
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/muscletool/default.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/pkgs/tools/security/muscletool/default.nix b/pkgs/tools/security/muscletool/default.nix
deleted file mode 100644
index 34f75609e4ff..000000000000
--- a/pkgs/tools/security/muscletool/default.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{stdenv, fetchurl, libmusclecard, pcsclite, pkgconfig }:
-stdenv.mkDerivation {
-  name = "muscletool-2.1.1";
-
-  src = fetchurl {
-    url = https://alioth.debian.org/frs/download.php/3180/muscletool-2.1.1.tar.bz2;
-    sha256 = "11d812ijvhsaxwkr05hzxfl0n6ji9hwl5j1kv56f9gv8kyy3b9kw";
-  };
-
-  buildInputs = [ libmusclecard pcsclite pkgconfig ];
-
-  meta = with stdenv.lib; {
-    description = "Smart card applications for use with MUSCLE plugins";
-    homepage = http://muscleapps.alioth.debian.org/;
-    license = licenses.bsd3;
-    maintainers = with maintainers; [viric];
-    # XXX: don't build before libmusclecard is fixed
-    # platforms = with stdenv.lib.platforms; linux;
-  };
-}