nixpkgs/pkgs/applications/misc/colort/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

25 lines
617 B
Nix

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation {
pname = "colort";
version = "unstable-2017-03-12";
src = fetchFromGitHub {
owner = "neeasade";
repo = "colort";
rev = "8470190706f358dc807b4c26ec3453db7f0306b6";
sha256 = "10n8rbr2h6hz86hcx73f86pjbbfiaw2rvxsk0yfajnma7bpxgdxw";
};
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "Program for 'tinting' color values";
homepage = "https://github.com/neeasade/colort";
license = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.neeasade ];
mainProgram = "colort";
};
}