Skip to content

Commit

Permalink
refactor: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
isabelroses committed Apr 14, 2024
1 parent 9b5424b commit 477a2e4
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions default.nix
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
{
pkgs ? import <nixpkgs> {},
lib ? pkgs.lib,
lib,
rustPlatform,
version ? "latest",
...
}:
pkgs.rustPlatform.buildRustPackage {
rustPlatform.buildRustPackage {
pname = "kittysay";
inherit version;

src = ./.;
cargoLock.lockFile = ./Cargo.lock;

doCheck = false;

meta = with lib; {
meta = {
description = "cowsay, but with a cute kitty :3";
homepage = "https://github.com/uncenter/kittysay";
license = licenses.mit;
maintainers = [maintainers.uncenter];
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [uncenter];
mainProgram = "kittysay";
};
}

0 comments on commit 477a2e4

Please sign in to comment.