mastodon/default.nix
embr 35ba1f089e nix: add default.nix and gemset.nix
Thank you, kind person who wrote this package with forks in mind.
2021-10-12 15:12:05 +02:00

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;
}