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:
Guillaume Maudoux 2018-11-18 09:28:02 +01:00
parent b586640f55
commit de8fe66ba0

View file

@ -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";
};