parent
efc72954a2
commit
fcaba5a3e9
|
@ -14,7 +14,5 @@
|
||||||
modules = import ./modules; # NixOS modules
|
modules = import ./modules; # NixOS modules
|
||||||
overlays = import ./overlays; # nixpkgs overlays
|
overlays = import ./overlays; # nixpkgs overlays
|
||||||
|
|
||||||
example-package = pkgs.callPackage ./pkgs/example-package { };
|
tmpl = pkgs.callPackage ./pkgs/tmpl { };
|
||||||
# some-qt5-package = pkgs.libsForQt5.callPackage ./pkgs/some-qt5-package { };
|
|
||||||
# ...
|
|
||||||
}
|
}
|
||||||
|
|
14
flake.nix
14
flake.nix
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
description = "My personal NUR repository";
|
description = "jolheiser personal NUR repository";
|
||||||
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||||||
outputs = { self, nixpkgs }:
|
outputs = { self, nixpkgs }:
|
||||||
let
|
let
|
||||||
|
@ -12,11 +12,11 @@
|
||||||
"armv7l-linux"
|
"armv7l-linux"
|
||||||
];
|
];
|
||||||
forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system);
|
forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system);
|
||||||
in
|
in {
|
||||||
{
|
legacyPackages = forAllSystems (system:
|
||||||
legacyPackages = forAllSystems (system: import ./default.nix {
|
import ./default.nix { pkgs = import nixpkgs { inherit system; }; });
|
||||||
pkgs = import nixpkgs { inherit system; };
|
packages = forAllSystems (system:
|
||||||
});
|
nixpkgs.lib.filterAttrs (_: v: nixpkgs.lib.isDerivation v)
|
||||||
packages = forAllSystems (system: nixpkgs.lib.filterAttrs (_: v: nixpkgs.lib.isDerivation v) self.legacyPackages.${system});
|
self.legacyPackages.${system});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
{ stdenv }:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
name = "example-package-${version}";
|
|
||||||
version = "1.0";
|
|
||||||
src = ./.;
|
|
||||||
buildPhase = "echo echo Hello World > example";
|
|
||||||
installPhase = "install -Dm755 example $out";
|
|
||||||
}
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
{ buildGoModule, fetchFromGitea, lib, ... }:
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "tmpl";
|
||||||
|
version = "0.3.1";
|
||||||
|
|
||||||
|
src = fetchFromGitea {
|
||||||
|
domain = "git.jojodev.com";
|
||||||
|
owner = "jolheiser";
|
||||||
|
repo = "tmpl";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-2GThTkTSiPv4SiWmRC/acKQ7k5uqrQQRM56eOxWCg7Q=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "sha256-PmguDbjTSz0jzj1pwUNZrO1aAFNkWSo/FAef29TjsGI=";
|
||||||
|
|
||||||
|
ldflags = [ "-s" "-w" "-X=go.jolheiser.com/tmpl/cmd.Version=${version}" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Template automation for bootstrapping projects";
|
||||||
|
homepage = "https://git.jojodev.com/jolheiser/tmpl";
|
||||||
|
license = licenses.mit;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue