diff options
| author | seth <[email protected]> | 2023-11-07 20:14:51 -0500 |
|---|---|---|
| committer | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2023-11-08 01:21:16 +0000 |
| commit | 6fa4fc84f72cce15f38ab3e125f156a5e381bf81 (patch) | |
| tree | fb4608efacdec16e6d591c177455d2424c759c7a /pkgs/mommy | |
| parent | 602193a4d8d0c8a886f9bb4f7e2bca2b968771fc (diff) | |
tree-wide: remove packages merged into nixpkgs
Diffstat (limited to 'pkgs/mommy')
| -rw-r--r-- | pkgs/mommy/default.nix | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/pkgs/mommy/default.nix b/pkgs/mommy/default.nix deleted file mode 100644 index c8938e9..0000000 --- a/pkgs/mommy/default.nix +++ /dev/null @@ -1,45 +0,0 @@ -{ - lib, - stdenvNoCC, - fetchFromGitHub, - gnumake, - man-db, - shellspec, - ... -}: let - inherit (lib) licenses maintainers platforms; -in - stdenvNoCC.mkDerivation rec { - pname = "mommy"; - version = "1.2.4"; - - src = fetchFromGitHub { - owner = "FWDekker"; - repo = pname; - rev = "v${version}"; - sha256 = "sha256-SqWhbhQeRUO0cD9Fv/nwKjTI3F0Sg2VhFZtrbyA9Wb4="; - }; - - checkInputs = [man-db shellspec]; - nativeBuildInputs = [gnumake]; - - checkPhase = '' - make test/unit - ''; - - installPhase = '' - make prefix=$out install - ''; - - meta = { - description = "mommy's here to support you, in any shell, on any system~"; - longDescription = '' - mommy's here to support you! mommy will compliment you if things go well, - and will encourage you if things are not going so well~ - ''; - homepage = "https://github.com/FWDekker/mommy"; - license = licenses.unlicense; - maintainers = [maintainers.getchoo]; - platforms = with platforms; linux ++ darwin; - }; - } |
