GNU Hurd: Use the date as the version number.

svn path=/nixpkgs/trunk/; revision=21897
This commit is contained in:
Ludovic Courtès 2010-05-19 21:28:14 +00:00
parent 5cb28c179c
commit b9e28b8a8e

View file

@ -1,9 +1,14 @@
{ fetchgit, stdenv, autoconf, automake, libtool, texinfo
, machHeaders, mig, headersOnly ? true }:
let rev = "7913beaef3e6a2c4f7f315a8db7a31dbe1f713e0"; in
stdenv.mkDerivation (rec {
name = "hurd-0.4-${rev}";
assert (cross != null) -> (gccCross != null);
let
date = "2010-05-12";
rev = "master@{${date}}";
in
stdenv.mkDerivation ({
name = "hurd-${date}";
src = fetchgit {
url = "git://git.sv.gnu.org/hurd/hurd.git";