mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 20:53:48 +00:00
cfcb5a1544
ISOs/tests that use the latest tarballs for GNU packages to provide a regression test for those GNU projects). svn path=/nixos/trunk/; revision=20488
21 lines
378 B
Nix
21 lines
378 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
machine =
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
nixpkgs.config.packageOverrides = origPkgs: {
|
|
cpio = pkgs.lib.overrideDerivation origPkgs.cpio (origAttrs: {
|
|
src = /home/eelco/Dev/nixpkgs/cpio-2.10.91.tar.bz2;
|
|
patches = [];
|
|
});
|
|
};
|
|
};
|
|
|
|
testScript =
|
|
''
|
|
$machine->mustSucceed("cpio --help");
|
|
'';
|
|
}
|