nix-config/pkgs/shellcolord/default.nix

25 lines
628 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromSourcehut }:
let
pname = "shellcolord";
in
stdenv.mkDerivation {
inherit pname;
version = "0.1";
src = fetchFromSourcehut {
owner = "~misterio";
repo = pname;
rev = "c761072952bba8bdc21b906fdc941b9ae5ac5432";
sha256 = "sha256-SLMAZy9UxQOA+2YhnryJ5ZvMXOf/Bxv0E8gIbP32XfE=";
};
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "A daemon that themes your shell remotely";
homepage = "https://git.sr.ht/~misterio/shellcolord";
license = licenses.unlicense;
platforms = platforms.all;
maintainers = with maintainers; [ misterio77 ];
};
}