Skip to content
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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 82291d6f1a4c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e567a5f7e450
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Aug 22, 2019

  1. acpica-tools: 20190703 -> 20190816

    Jonathan Ringer committed Aug 22, 2019
    Copy the full SHA
    0c96339 View commit details

Commits on Aug 24, 2019

  1. Merge pull request #67296 from jonringer/bump-acpica-tools

    acpica-tools: 20190703 -> 20190816
    mmahut authored Aug 24, 2019
    Copy the full SHA
    e567a5f View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/system/acpica-tools/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/system/acpica-tools/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
pname = "acpica-tools";
version = "20190703";
version = "20190816";

src = fetchurl {
url = "https://acpica.org/sites/acpica/files/acpica-unix-${version}.tar.gz";
sha256 = "031m124a109vv6fx667h4ca2iav0xszrlvif9zcfxcaxbjsn6991";
sha256 = "0p7ws106hf8bir9yb1a5m6v3wmvqagxmk3l9rpp4i89vib44vv3s";
};

NIX_CFLAGS_COMPILE = "-O3";
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {

nativeBuildInputs = [ bison flex ];

installFlags = [ "PREFIX=$(out)" ];
installFlags = [ "PREFIX=${placeholder "out"}" ];

meta = with stdenv.lib; {
description = "ACPICA Tools";