nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at haskell-updates 18 lines 327 B view raw
1{ nixpkgs }: 2let 3 pkgs = import nixpkgs { 4 system = "x86_64-linux"; 5 overlays = [ ]; 6 config = { 7 problems.handlers = { 8 "a"."maintainerless" = "error"; 9 }; 10 }; 11 }; 12in 13pkgs.stdenvNoCC.mkDerivation { 14 pname = "a"; 15 version = "0"; 16 meta.description = "Some package"; 17 meta.maintainers = [ ]; 18}