4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
30 lines
921 B
Nix
30 lines
921 B
Nix
{ lib, stdenv, fetchurl, libjpeg, libmcrypt, zlib, libmhash, gettext, libtool}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
buildInputs = [ libjpeg libmcrypt zlib libmhash gettext libtool ];
|
|
version = "0.5.1";
|
|
pname = "steghide";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/steghide/steghide/${version}/steghide-${version}.tar.gz" ;
|
|
sha256 = "78069b7cfe9d1f5348ae43f918f06f91d783c2b3ff25af021e6a312cf541b47b";
|
|
};
|
|
|
|
patches = [
|
|
./patches/steghide-0.5.1-gcc34.patch
|
|
./patches/steghide-0.5.1-gcc4.patch
|
|
./patches/steghide-0.5.1-gcc43.patch
|
|
];
|
|
|
|
# AM_CXXFLAGS needed for automake
|
|
preConfigure = ''
|
|
export AM_CXXFLAGS="$CXXFLAGS -std=c++0x"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://steghide.sourceforge.net/";
|
|
description = "Steganography program that is able to hide data in various kinds of image- and audio-files";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|