12 lines
297 B
Nix
12 lines
297 B
Nix
|
{ pkgs ? import <nixpkgs> { } }:
|
||
|
let
|
||
|
f = (path: type: ! builtins.elem (baseNameOf path) [ ".git" "node_modules" "result" ]);
|
||
|
src = builtins.filterSource f ./.;
|
||
|
in
|
||
|
pkgs.mastodon.override {
|
||
|
pname = "mastodon-queer-af";
|
||
|
version = "2021-08-27";
|
||
|
srcOverride = src;
|
||
|
dependenciesDir = src;
|
||
|
}
|