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

Commits on Nov 18, 2018

  1. buck: use upstream version convention

    Changes added in 4d1fd37 break
    automated updates by moving to a custom version scheme.
    
    This switches back to upstream versioning, while maintaining version
    schema convention of `builtins.parseDrvName`.
    
    See issue #43717
    layus committed Nov 18, 2018
    Copy the full SHA
    de8fe66 View commit details
  2. Merge pull request #50566 from layus/tmp/buck-version

    buck: use upstream version convention
    Mic92 authored Nov 18, 2018
    Copy the full SHA
    d208fa5 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/tools/build-managers/buck/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/tools/build-managers/buck/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{ stdenv, fetchFromGitHub, jdk, ant, python2, python2Packages, watchman, bash, makeWrapper }:

stdenv.mkDerivation rec {
name = "buck-unstable-${version}";
version = "2017-10-01";
name = "buck-${version}";
version = "2017.10.01.01";

src = fetchFromGitHub {
owner = "facebook";
repo = "buck";
rev = "2025fd74327477728b524eafdd4619a0170a24ea";
rev = "v${version}";
sha256 = "05nyyb6f0hv1h67zzvdq8297yl8zjhpbasx35lxnrsjz0m1h8ngw";
};