.files/nix/packages/by-name/maeel/package.nix
Léana 江 ebf8468807
tree-wide: format with nixfmt
Another saturday another useless formatter change.
It's my dotfiles, after all

alejandra doesn't handle c-style inline comments well.
2025-11-08 10:15:58 +08:00

22 lines
428 B
Nix

{
stdenv,
fetchFromGitHub,
rustc,
}:
stdenv.mkDerivation {
pname = "maeel";
version = "3.0";
src = fetchFromGitHub {
owner = "Traumatism";
repo = "maeel";
rev = "d8e4261266a181904947ef940b6744a6360c93a6";
hash = "sha256-Ee4/N2Q90xsbyGVtpE/yUFWC/ELt8nBAICkR/FlZQOo=";
};
nativeBuildInputs = [ rustc ];
installPhase = ''
mkdir -p "$out/bin"
cp --reflink=auto ./maeel "$out/bin"
'';
}