summary refs log tree commit diff
path: root/pkgs/os-specific/linux/blcr
diff options
context:
space:
mode:
authorMarco Maggesi <maggesi@math.unifi.it>2017-04-13 14:12:50 +0200
committerMarco Maggesi <maggesi@math.unifi.it>2017-04-13 14:15:27 +0200
commit1dee38f259c28f08a9694923301290fa82f5d81f (patch)
tree8c51a2a9e246a4571224fcdf18b30d745f7a81ed /pkgs/os-specific/linux/blcr
parent15bb499df939674c992b1c42e915821193116af2 (diff)
downloadnixlib-1dee38f259c28f08a9694923301290fa82f5d81f.tar
nixlib-1dee38f259c28f08a9694923301290fa82f5d81f.tar.gz
nixlib-1dee38f259c28f08a9694923301290fa82f5d81f.tar.bz2
nixlib-1dee38f259c28f08a9694923301290fa82f5d81f.tar.lz
nixlib-1dee38f259c28f08a9694923301290fa82f5d81f.tar.xz
nixlib-1dee38f259c28f08a9694923301290fa82f5d81f.tar.zst
nixlib-1dee38f259c28f08a9694923301290fa82f5d81f.zip
BLCR 0.8.5b4 *do* work with Linux 3.10.
Diffstat (limited to 'pkgs/os-specific/linux/blcr')
-rw-r--r--pkgs/os-specific/linux/blcr/default.nix6
1 files changed, 1 insertions, 5 deletions
diff --git a/pkgs/os-specific/linux/blcr/default.nix b/pkgs/os-specific/linux/blcr/default.nix
index c2e3fa4b9e1f..ab1a93b3a703 100644
--- a/pkgs/os-specific/linux/blcr/default.nix
+++ b/pkgs/os-specific/linux/blcr/default.nix
@@ -1,14 +1,10 @@
 { stdenv, lib, fetchurl, kernel, perl, makeWrapper }:
 
-# BLCR 0.8.5 should works for kernel version up to 3.7.1
-# BLCR 0.8.6 should works for kernel version up to 3.17.x
+# BLCR version 0.8.6 should works with linux kernel up to version 3.17.x
 
 assert stdenv.isLinux;
 assert builtins.compareVersions "3.18" kernel.version == 1;
 
-# it doesn't compile anymore on 3.12
-assert lib.versionAtLeast kernel.version "3.14";
-
 stdenv.mkDerivation {
   name = "blcr_${kernel.version}-0.8.6pre4";