about summary refs log tree commit diff
path: root/pkgs/development/libraries/afflib/default.nix
blob: ed88b89b14eec046d80874cdf0852c129a4c63ec (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, zlib, curl, expat, fuse, openssl }:

stdenv.mkDerivation rec {
  version = "3.7.4";
  name = "afflib-${version}";

  src = fetchurl {
    url = "http://digitalcorpora.org/downloads/afflib/${name}.tar.gz";
    sha256 = "18j1gjb31qjcmz6lry4m2d933w2a80iagg9g5vrpw5ig80lv10f8";
  };

  buildInputs = [ zlib curl expat fuse openssl ];

  meta = {
    homepage = http://afflib.sourceforge.net/;
    description = "Advanced forensic format library";
    platforms = stdenv.lib.platforms.linux;
    license = stdenv.lib.licenses.bsdOriginal;
    maintainers = [ stdenv.lib.maintainers.raskin ];
    inherit version;
    downloadPage = "http://digitalcorpora.org/downloads/afflib/";
    updateWalker = true;
  };
}