summary refs log tree commit diff
path: root/pkgs/tools/security/steghide/default.nix
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-08-03 13:34:44 +0000
committerRobin Gloster <mail@glob.in>2016-08-03 13:34:44 +0000
commit1b979d83845945dabffebff5033cf864b41d5c64 (patch)
tree6e81ba4ab8cd28ad9fc8d9e2a3a298bc5a403042 /pkgs/tools/security/steghide/default.nix
parent3f9e8601f2a8537de90f04375400538049bbdaf2 (diff)
parentd93f917182dc5da7aca53fb9a847374ec0c7429a (diff)
downloadnixpkgs-1b979d83845945dabffebff5033cf864b41d5c64.tar
nixpkgs-1b979d83845945dabffebff5033cf864b41d5c64.tar.gz
nixpkgs-1b979d83845945dabffebff5033cf864b41d5c64.tar.bz2
nixpkgs-1b979d83845945dabffebff5033cf864b41d5c64.tar.lz
nixpkgs-1b979d83845945dabffebff5033cf864b41d5c64.tar.xz
nixpkgs-1b979d83845945dabffebff5033cf864b41d5c64.tar.zst
nixpkgs-1b979d83845945dabffebff5033cf864b41d5c64.zip
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
Diffstat (limited to 'pkgs/tools/security/steghide/default.nix')
-rw-r--r--pkgs/tools/security/steghide/default.nix48
1 files changed, 24 insertions, 24 deletions
diff --git a/pkgs/tools/security/steghide/default.nix b/pkgs/tools/security/steghide/default.nix
index 03e8c727022..c8be366066b 100644
--- a/pkgs/tools/security/steghide/default.nix
+++ b/pkgs/tools/security/steghide/default.nix
@@ -1,30 +1,30 @@
 { stdenv, fetchurl, libjpeg, libmcrypt, zlib, libmhash, gettext, libtool}:
 
-  stdenv.mkDerivation rec {
-    buildInputs = [ libjpeg libmcrypt zlib libmhash gettext libtool ];
-    version = "0.5.1";
-    name = "steghide-${version}";
+stdenv.mkDerivation rec {
+  buildInputs = [ libjpeg libmcrypt zlib libmhash gettext libtool ];
+  version = "0.5.1";
+  name = "steghide-${version}";
 
-    meta = with stdenv.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;
-    };
+  src = fetchurl {
+    url = "mirror://sourceforge/steghide/steghide/${version}/steghide-${version}.tar.gz" ;
+    sha256 = "78069b7cfe9d1f5348ae43f918f06f91d783c2b3ff25af021e6a312cf541b47b";
+  };
 
-    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
+  ];
 
-    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"
+  '';
 
-    # AM_CXXFLAGS needed for automake
-    preConfigure = ''
-      export AM_CXXFLAGS="$CXXFLAGS -std=c++0x"
-    '';
-
-  }
+  meta = with stdenv.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;
+  };
+}