2e97caa6d3
And add tests for it
16 lines
276 B
Nix
16 lines
276 B
Nix
{ nixpkgs }:
|
|
let
|
|
pkgs = import nixpkgs {
|
|
system = "x86_64-linux";
|
|
overlays = [ ];
|
|
config = { };
|
|
};
|
|
in
|
|
pkgs.stdenvNoCC.mkDerivation {
|
|
pname = "a";
|
|
version = "0";
|
|
meta.maintainers = [ "hello" ];
|
|
meta.description = "Some package";
|
|
meta.broken = true;
|
|
}
|