summary refs log tree commit diff
path: root/pkgs/development/tools/analysis/kcov/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/development/tools/analysis/kcov/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/development/tools/analysis/kcov/default.nix')
-rw-r--r--pkgs/development/tools/analysis/kcov/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/tools/analysis/kcov/default.nix b/pkgs/development/tools/analysis/kcov/default.nix
index ffb2896da35..cf5b974b50f 100644
--- a/pkgs/development/tools/analysis/kcov/default.nix
+++ b/pkgs/development/tools/analysis/kcov/default.nix
@@ -1,4 +1,5 @@
 {stdenv, fetchurl, cmake, pkgconfig, zlib, curl, elfutils, python, libiberty, binutils}:
+
 stdenv.mkDerivation rec {
   name = "kcov-${version}";
   version = "29";
@@ -10,7 +11,7 @@ stdenv.mkDerivation rec {
 
   preConfigure = "patchShebangs src/bin-to-c-source.py";
   buildInputs = [ cmake pkgconfig zlib curl elfutils python libiberty binutils ];
-  
+
   meta = with stdenv.lib; {
     description = "Code coverage tester for compiled programs, Python scripts and shell scripts";
 
@@ -26,6 +27,6 @@ stdenv.mkDerivation rec {
     license = licenses.gpl2;
 
     maintainers = [ maintainers.gal_bolle ];
-    };
-    
-  }
+    platforms = platforms.linux;
+  };
+}