commit
b2abf36467
26
pkgs/development/tools/scaff/default.nix
Normal file
26
pkgs/development/tools/scaff/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ lib, rustPlatform, fetchFromGitLab, pkgconfig, openssl }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "scaff";
|
||||
version = "0.1.1";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "jD91mZM2";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
|
||||
sha256 = "1s5v50205l2h33pccyafrjv3a6lpb62inhm8z81hkvx53bqifvd7";
|
||||
};
|
||||
|
||||
cargoSha256 = "17rnzwlgrpr6isbajaccxa83msvvskxyqrc4cirgjmc7aqa0ilbh";
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ openssl ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Painless and powerful scaffolding of projects";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ jD91mZM2 ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -10516,6 +10516,8 @@ in
|
||||
|
||||
sauce-connect = callPackage ../development/tools/sauce-connect { };
|
||||
|
||||
scaff = callPackage ../development/tools/scaff { };
|
||||
|
||||
selenium-server-standalone = callPackage ../development/tools/selenium/server { };
|
||||
|
||||
selendroid = callPackage ../development/tools/selenium/selendroid { };
|
||||
|
Loading…
Reference in New Issue
Block a user