initial bits

This commit is contained in:
Aaron Bieber 2022-09-23 16:33:22 -06:00
parent ada61198ff
commit 48383d9cd7
No known key found for this signature in database
3 changed files with 52 additions and 0 deletions

View File

@ -175,5 +175,9 @@
path = ./templates/go;
description = "Go template.";
};
templates."perl" = {
path = ./templates/perl;
description = "Perl template.";
};
};
}

1
templates/perl/.envrc Normal file
View File

@ -0,0 +1 @@
use flake

47
templates/perl/flake.nix Normal file
View File

@ -0,0 +1,47 @@
{
description = "thing: stuff and things";
inputs.nixpkgs.url = "nixpkgs/nixos-22.05";
outputs = { self, nixpkgs }:
let
supportedSystems =
[ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ];
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
nixpkgsFor = forAllSystems (system: import nixpkgs { inherit system; });
in {
packages = forAllSystems (system:
let pkgs = nixpkgsFor.${system};
in {
thing = pkgs.stdenv.mkDerivation {
pname = "thing";
version = "v0.0.0";
src = ./.;
buildInputs = with pkgs; [ perl ];
buildPhase = ''
gprbuild thing
'';
installPhase = ''
mkdir -p $out/bin
mv thing $out/bin
'';
};
});
defaultPackage = forAllSystems (system: self.packages.${system}.thing);
devShells = forAllSystems (system:
let pkgs = nixpkgsFor.${system};
in {
default = pkgs.mkShell {
shellHook = ''
PS1='\u@\h:\@; '
echo "Ada `${pkgs.gnat12}/bin/gnatmake --version`"
'';
nativeBuildInputs = with pkgs; [ gnat12 gprbuild ];
};
});
};
}