Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 698f5dbabc11
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f0ad76b504dd
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 1, 2020

  1. smartmontools: 7.0 -> 7.1 and devicedb updated to latest

    (cherry picked from commit 38b0c55)
    Frostman committed Mar 1, 2020
    Copy the full SHA
    5d19f24 View commit details
  2. smartmontools: add Frostman to maintainers

    (cherry picked from commit e85f0a8)
    Frostman committed Mar 1, 2020
    Copy the full SHA
    c961031 View commit details
  3. Merge pull request #81423 from Frostman/20.03-smartmontools-7.1

    [20.03] smartmontools: 7.0 -> 7.1 and devicedb updated to latest
    worldofpeace authored Mar 1, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    f0ad76b View commit details
Showing with 6 additions and 6 deletions.
  1. +6 −6 pkgs/tools/system/smartmontools/default.nix
12 changes: 6 additions & 6 deletions pkgs/tools/system/smartmontools/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@
, IOKit ? null , ApplicationServices ? null }:

let
version = "7.0";
version = "7.1";

dbrev = "4883";
drivedbBranch = "RELEASE_${builtins.replaceStrings ["."] ["_"] version}_DRIVEDB";
dbrev = "5033";
drivedbBranch = "RELEASE_7_0_DRIVEDB";
driverdb = fetchurl {
url = "https://sourceforge.net/p/smartmontools/code/${dbrev}/tree/branches/${drivedbBranch}/smartmontools/drivedb.h?format=raw";
sha256 = "07x3haz65jyhj579h4z17v6jkw6bbyid34442gl4qddmgv2qzvwx";
sha256 = "029j118lwiazn56vg6d3i7ayv73wrpv1fypw3ff4nd4hgs2mlcrg";
name = "smartmontools-drivedb.h";
};

@@ -18,7 +18,7 @@ in stdenv.mkDerivation rec {

src = fetchurl {
url = "mirror://sourceforge/smartmontools/${pname}-${version}.tar.gz";
sha256 = "077nx2rn9szrg6isdh0938zbp7vr3dsyxl4jdyyzv1xwhqksrqg5";
sha256 = "0imqb7ka4ia5573w8rnpck571pjjc9698pdjcapy9cfyk4n4swrz";
};

patches = [ ./smartmontools.patch ];
@@ -32,7 +32,7 @@ in stdenv.mkDerivation rec {
description = "Tools for monitoring the health of hard drives";
homepage = https://www.smartmontools.org/;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ peti ];
maintainers = with maintainers; [ peti Frostman ];
platforms = with platforms; linux ++ darwin;
};
}