mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
buck: use upstream version convention
Changes added in 4d1fd3775d
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
This commit is contained in:
parent
b586640f55
commit
de8fe66ba0
1 changed files with 3 additions and 3 deletions
|
@ -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";
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue