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: 8905ca4d7139
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0a7d20ece5f0
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 11, 2018

  1. uftrace: 0.9 -> 0.9.1 (#50228)

    nthorne authored and timokau committed Nov 11, 2018
    Copy the full SHA
    0a7d20e View commit details
Showing with 4 additions and 5 deletions.
  1. +4 −5 pkgs/development/tools/uftrace/default.nix
9 changes: 4 additions & 5 deletions pkgs/development/tools/uftrace/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{stdenv, fetchFromGitHub }:
{stdenv, fetchFromGitHub}:

stdenv.mkDerivation rec {
name = "uftrace-${version}";
version = "0.9";
version = "0.9.1";

src = fetchFromGitHub {
owner = "namhyung";
repo = "uftrace";
rev = "f0fed0b24a9727ffed04673b62f66baad21a1f99";
sha256 = "0rn2xwd87qy5ihn5zq9pwq8cs1vfmcqqz0wl70wskkgp2ccsd9x8";
rev = "v${version}";
sha256 = "1jb4dp6crvfzxzmi5iflc7p13b7p2v1djyj6smbf9ns4wr515y6b";
};

postUnpack = ''
@@ -23,4 +23,3 @@ stdenv.mkDerivation rec {
maintainers = [stdenv.lib.maintainers.nthorne];
};
}