jD91mZM2 3a6ba9ea5b
remove me as maintainer
I don't use these tools anymore, so it makes sense I shouldn't have an
opinion on PRs that change/update them. I know it's always unfortunate
losing a reviewer, but I'm not very active anymore anyway,
unfortunately. Apologies.

From now on, I'm trying not to add too many packages into nixpkgs, since
flakes are available. I guess when I first started using Nix I got
overexcited by how easy it was to contribute, so I added things for the
sake of adding things (not because I necessarily used them).
2021-03-01 12:32:20 +01:00

27 lines
643 B
Nix

{ 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;
};
}