Large module update

This commit is contained in:
Filippo Berto 2021-06-01 22:19:24 +02:00
parent 492ae9d92a
commit a61bfe3c50
18 changed files with 463 additions and 87 deletions

15
custom/default.nix Normal file
View file

@ -0,0 +1,15 @@
{ system ? builtins.currentSystem }:
let
pkgs = import <nixpkgs> { inherit system; };
# pkgs = import (builtins.fetchTarball {
# name = "nixos-unstable-2021-05-26";
# url = "https://github.com/nixos/nixpkgs/archive/9b7fb215d4d8399772a4f3d6f00fab3747136f53.tar.gz";
# sha256 = "02d1841j7jg161q7cwh7vryxhv7x3bmnhd1jczx14ggfa66vqfhm";
# }) { inherit system; };
callPackage = pkgs.lib.callPackageWith ( pkgs // self );
self = {
gallery-tagger = callPackage ./gallery-tagger {};
};
in self