diff options
| author | seth <[email protected]> | 2023-10-07 10:10:55 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-10-07 10:18:46 -0400 |
| commit | 519191cd9f31d1fe1c205535ddc4efe5f2e63793 (patch) | |
| tree | 441a3b0cbf33a15ac052a1fd6a6894cf169f493b /pkgs/mommy.nix | |
| parent | 62a26a94a11774b7c14ea10cde0ca2294990fb9b (diff) | |
treewide!: remove flake-parts
while i love flake parts, i want to keep dependencies for this project as small as possible
Diffstat (limited to 'pkgs/mommy.nix')
| -rw-r--r-- | pkgs/mommy.nix | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/pkgs/mommy.nix b/pkgs/mommy.nix deleted file mode 100644 index c8938e9..0000000 --- a/pkgs/mommy.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; - }; - } |
