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

Commits on Oct 28, 2019

  1. liburing: 0.2pre252_a9bb08db -> 0.2

    Signed-off-by: Austin Seipp <aseipp@pobox.com>
    thoughtpolice committed Oct 28, 2019
    Copy the full SHA
    fa4f091 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/development/libraries/liburing/default.nix
8 changes: 4 additions & 4 deletions pkgs/development/libraries/liburing/default.nix
Original file line number Diff line number Diff line change
@@ -4,12 +4,12 @@

stdenv.mkDerivation rec {
pname = "liburing";
version = "0.2pre252_${builtins.substring 0 8 src.rev}";
version = "0.2";

src = fetchgit {
url = "http://git.kernel.dk/liburing";
rev = "a9bb08db3f8795eb58239d5dbb888e9c1d424011";
sha256 = "0gv06fcgqhfkqgiqzjb4qzpxh3h595ypw01a0kmhqnmsnvmb624n";
url = "http://git.kernel.dk/${pname}";
rev = "refs/tags/${pname}-${version}";
sha256 = "0dxq7qjrwndgavrrc6y2wg54ia3y5wkmcyhpdk4l5pvh7hw6kpdz";
};

separateDebugInfo = true;