907bb1aac6
* libdbi / libdbi-drivers: updated to 0.8.3, and make it compile with SQLite. * qemu-image: fix the URL. * gdmap: make it build again (requires an older GTK+). * rlwrap: updated to 0.37. * smbfs-fuse -> fusesmb to match the upstream name. * x11vnc: updated to 0.9.10. * clearlyU: fix the URL. * Various packages: follow the coding conventions. svn path=/nixpkgs/trunk/; revision=22814
23 lines
461 B
Nix
23 lines
461 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "qemu-linux-image-0.2";
|
|
|
|
src = fetchurl {
|
|
url = http://wiki.qemu.org/download/linux-0.2.img.bz2;
|
|
sha256 = "08xlwy1908chpc4fsqy2v13zi25dapk0ybrd43fj95v67kdj5hj1";
|
|
};
|
|
|
|
unpackPhase = "true";
|
|
|
|
installPhase =
|
|
''
|
|
ensureDir $out/share/qemu-images
|
|
bunzip2 < $src > $out/share/qemu-images/linux-0.2.img
|
|
'';
|
|
|
|
meta = {
|
|
description = "QEMU sample Linux disk image";
|
|
};
|
|
}
|