nixpkgs/pkgs/by-name/ni/nixfmt-rfc-style/package.nix
0x4A6F 22cd1fb65f nixfmt-rfc-style: init at unstable-2024-01-15
Co-Authored-By: Silvan Mosberger <contact@infinisil.com>
2024-01-23 18:35:54 +01:00

33 lines
737 B
Nix

{
haskell,
haskellPackages,
lib,
runCommand,
nixfmt-rfc-style,
}:
let
inherit (haskell.lib.compose) overrideCabal justStaticExecutables;
overrides = {
version = "unstable-${lib.fileContents ./date.txt}";
passthru.updateScript = ./update.sh;
maintainers = lib.teams.formatter.members;
# These tests can be run with the following command.
#
# $ nix-build -A nixfmt-rfc-style.tests
passthru.tests =
runCommand "nixfmt-rfc-style-tests" { nativeBuildInputs = [ nixfmt-rfc-style ]; }
''
nixfmt --version > $out
'';
};
raw-pkg = haskellPackages.callPackage ./generated-package.nix { };
in
lib.pipe raw-pkg [
(overrideCabal overrides)
justStaticExecutables
]