43 lines
1.2 KiB
Nix
43 lines
1.2 KiB
Nix
|
{
|
||
|
description = "thing: stuff and things";
|
||
|
|
||
|
inputs.nixpkgs.url = "nixpkgs/nixos-21.11";
|
||
|
|
||
|
outputs = { self, nixpkgs }:
|
||
|
let
|
||
|
lastModifiedDate =
|
||
|
self.lastModifiedDate or self.lastModified or "19700101";
|
||
|
version = builtins.substring 0 8 lastModifiedDate;
|
||
|
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.buildGoModule {
|
||
|
pname = "thing";
|
||
|
inherit version;
|
||
|
src = ./.;
|
||
|
|
||
|
vendorSha256 = pkgs.lib.fakeSha256;
|
||
|
proxyVendor = true;
|
||
|
};
|
||
|
});
|
||
|
|
||
|
defaultPackage = forAllSystems (system: self.packages.${system}.pnix);
|
||
|
devShells = forAllSystems (system:
|
||
|
let pkgs = nixpkgsFor.${system};
|
||
|
in {
|
||
|
default = pkgs.mkShell {
|
||
|
shellHook = ''
|
||
|
PS1='\u@\h:\@; '
|
||
|
'';
|
||
|
nativeBuildInputs = with pkgs; [ git go gopls go-tools ];
|
||
|
};
|
||
|
});
|
||
|
};
|
||
|
}
|
||
|
|