summary refs log tree commit diff
path: root/pkgs/development/libraries/libmcrypt/default.nix
blob: 50bbf8383e610259ed543c2877dfa7b6da2750d6 (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
25
{ lib, stdenv, fetchurl, darwin, disablePosixThreads ? false }:

with lib;

stdenv.mkDerivation rec {
  pname = "libmcrypt";
  version = "2.5.8";

  src = fetchurl {
    url = "mirror://sourceforge/mcrypt/Libmcrypt/${version}/libmcrypt-${version}.tar.gz";
    sha256 = "0gipgb939vy9m66d3k8il98rvvwczyaw2ixr8yn6icds9c3nrsz4";
  };

  buildInputs = optional stdenv.isDarwin darwin.cctools;

  configureFlags = optional disablePosixThreads
    [ "--disable-posix-threads" ];

  meta = {
    description = "Replacement for the old crypt() package and crypt(1) command, with extensions";
    homepage = "http://mcrypt.sourceforge.net";
    license = "GPL";
    platforms = platforms.all;
  };
}