summary refs log tree commit diff
path: root/pkgs/os-specific/linux/e1000e
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-02-17 14:32:28 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-02-17 14:32:28 +0000
commitb23126fcc3bca0072f68b576178aee263182ba71 (patch)
tree70cb6062c9353474867b15d624da5ae7431ee77e /pkgs/os-specific/linux/e1000e
parentd27f8787f7a30a96a10f6129482b32dad818e7ae (diff)
downloadnixpkgs-b23126fcc3bca0072f68b576178aee263182ba71.tar
nixpkgs-b23126fcc3bca0072f68b576178aee263182ba71.tar.gz
nixpkgs-b23126fcc3bca0072f68b576178aee263182ba71.tar.bz2
nixpkgs-b23126fcc3bca0072f68b576178aee263182ba71.tar.lz
nixpkgs-b23126fcc3bca0072f68b576178aee263182ba71.tar.xz
nixpkgs-b23126fcc3bca0072f68b576178aee263182ba71.tar.zst
nixpkgs-b23126fcc3bca0072f68b576178aee263182ba71.zip
* Include the kernel version in kernel-specific packages so that they
  can be distinguished in nix-env -qa output.

svn path=/nixpkgs/trunk/; revision=32352
Diffstat (limited to 'pkgs/os-specific/linux/e1000e')
-rw-r--r--pkgs/os-specific/linux/e1000e/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/e1000e/default.nix b/pkgs/os-specific/linux/e1000e/default.nix
index b4d92158054..709befd9dc5 100644
--- a/pkgs/os-specific/linux/e1000e/default.nix
+++ b/pkgs/os-specific/linux/e1000e/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl, kernel }:
 
 stdenv.mkDerivation {
-  name = "e1000e-1.5.1";
+  name = "e1000e-1.5.1-${kernel.version}";
 
   src = fetchurl {
     url = "http://downloads.sourceforge.net/e1000/e1000e-1.5.1.tar.gz";