From 46f37ddcc3d86019f5c14c87fd770524eee4a810 Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Mon, 1 Mar 2021 22:48:44 -0500 Subject: [PATCH] delete unreferenced development/tools/scaff Fixes: 0799e016 ('scaff: delete') --- pkgs/development/tools/scaff/default.nix | 26 ------------------------ 1 file changed, 26 deletions(-) delete mode 100644 pkgs/development/tools/scaff/default.nix diff --git a/pkgs/development/tools/scaff/default.nix b/pkgs/development/tools/scaff/default.nix deleted file mode 100644 index 4b5540c699cf..000000000000 --- a/pkgs/development/tools/scaff/default.nix +++ /dev/null @@ -1,26 +0,0 @@ -{ lib, rustPlatform, fetchFromGitLab, pkg-config, openssl }: - -rustPlatform.buildRustPackage rec { - pname = "scaff"; - version = "0.1.2"; - - src = fetchFromGitLab { - owner = "jD91mZM2"; - repo = pname; - rev = version; - - sha256 = "01yf2clf156qv2a6w866a2p8rc2dl8innxnsqrj244x54s1pk27r"; - }; - - cargoSha256 = "1v6580mj70d7cqbjw32slz65lg6c8ficq5mdkfbivs63hqkv4hgx"; - - nativeBuildInputs = [ pkg-config ]; - buildInputs = [ openssl ]; - - meta = with lib; { - description = "Painless and powerful scaffolding of projects"; - license = licenses.mit; - maintainers = with lib.maintainers; [ ]; - platforms = platforms.unix; - }; -}