mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
GNU Hurd: Use the date as the version number.
svn path=/nixpkgs/trunk/; revision=21897
This commit is contained in:
parent
5cb28c179c
commit
b9e28b8a8e
1 changed files with 8 additions and 3 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue