The old server has died, so we move to the new URL at bscpm04.bsc.es. Reviewed-by: Rodrigo Arias Mallo <rodrigo.arias@bsc.es> Tested-by: Rodrigo Arias Mallo <rodrigo.arias@bsc.es>
		
			
				
	
	
		
			19 lines
		
	
	
		
			383 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			383 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  stdenv
 | 
						|
, glibc
 | 
						|
}:
 | 
						|
 | 
						|
stdenv.mkDerivation rec {
 | 
						|
  pname = "nixtools";
 | 
						|
  version = "${src.shortRev}";
 | 
						|
  src = builtins.fetchGit {
 | 
						|
    url = "ssh://git@bscpm04.bsc.es/rarias/nixtools";
 | 
						|
    ref = "master";
 | 
						|
    rev = "a103e392048ace3ed88ce74648b32c9e6ed094da";
 | 
						|
  };
 | 
						|
  buildInputs = [ glibc.static ];
 | 
						|
  makeFlags = [ "DESTDIR=$(out)" ];
 | 
						|
  preBuild = "env";
 | 
						|
  dontPatchShebangs = true;
 | 
						|
}
 |