nixpkgs/tests/gnu-integration.nix
Eelco Dolstra cfcb5a1544 * Start of a GNU integration test (i.e. a variant of the NixOS
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
2010-03-09 12:21:26 +00:00

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");
'';
}