summary refs log tree commit diff
path: root/pkgs/tools/security/muscleframework
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-01-06 02:12:28 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-01-06 02:13:59 +0100
commitbc6f9ff90dc6441933434bdf21961e3e81c9d04b (patch)
tree85c257b575a48c440653f54c78cc4d08296de63a /pkgs/tools/security/muscleframework
parent42420a30d5b601a5b38de0d7dd24a7b8063913b2 (diff)
downloadnixlib-bc6f9ff90dc6441933434bdf21961e3e81c9d04b.tar
nixlib-bc6f9ff90dc6441933434bdf21961e3e81c9d04b.tar.gz
nixlib-bc6f9ff90dc6441933434bdf21961e3e81c9d04b.tar.bz2
nixlib-bc6f9ff90dc6441933434bdf21961e3e81c9d04b.tar.lz
nixlib-bc6f9ff90dc6441933434bdf21961e3e81c9d04b.tar.xz
nixlib-bc6f9ff90dc6441933434bdf21961e3e81c9d04b.tar.zst
nixlib-bc6f9ff90dc6441933434bdf21961e3e81c9d04b.zip
muscleframework: remove dead package
Broken since 2013. Upstream don't smell too good since 2009.
Diffstat (limited to 'pkgs/tools/security/muscleframework')
-rw-r--r--pkgs/tools/security/muscleframework/default.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/tools/security/muscleframework/default.nix b/pkgs/tools/security/muscleframework/default.nix
deleted file mode 100644
index c1b9dad91ff4..000000000000
--- a/pkgs/tools/security/muscleframework/default.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-# The tarball has different plugins in it, and as I don't need all of them,
-# I only build one of those in this derivation
-# This is an arbitrary decision, and this simplicity fit my needs.
-# Anyone can extend the extension to build all the plugins, or to make
-# different derivations for each plugin.
-
-{stdenv, fetchurl, libmusclecard, pkgconfig, pcsclite}:
-stdenv.mkDerivation {
-  name = "muscleframework-mcardplugin-1.1.7";
-
-  src = fetchurl {
-    url = https://alioth.debian.org/frs/download.php/3056/muscleframework-1.1.7.tar.gz;
-    sha256 = "081sq25fa3k1gz0asq2995krx7pzxbfq5vx1ahsd5sbmwnplv94v";
-  };
-
-  preConfigure = ''
-    cd MCardPlugin
-    configureFlags="$configureFlags --enable-muscledropdir=$out/pcsc/services"
-  '';
-
-  buildInputs = [ libmusclecard pkgconfig pcsclite];
-
-  meta = with stdenv.lib; {
-    description = "MUSCLE smart card framework - mcard plugin";
-    homepage = http://muscleplugins.alioth.debian.org/;
-    license = licenses.bsd3;
-    maintainers = with maintainers; [viric];
-    # XXX: don't build before libmusclecard is fixed
-    # platforms = with stdenv.lib.platforms; linux;
-  };
-}