Files
nixpkgs/pkgs/by-name/pa/pastebinit/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

60 lines
1.2 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
python3,
libxslt,
docbook_xsl,
installShellFiles,
callPackage,
}:
stdenv.mkDerivation rec {
version = "1.6.2";
pname = "pastebinit";
src = fetchFromGitHub {
owner = "pastebinit";
repo = "pastebinit";
rev = version;
hash = "sha256-vuAWkHlQM6QTWarThpSbY0qrxzej0GvLU0jT2JOS/qc=";
};
patches = [
./use-drv-etc.patch
];
nativeBuildInputs = [
libxslt
installShellFiles
];
buildInputs = [
(python3.withPackages (p: [ p.distro ]))
];
buildPhase = ''
xsltproc --nonet ${docbook_xsl}/xml/xsl/docbook/manpages/docbook.xsl pastebinit.xml
'';
installPhase = ''
mkdir -p $out/bin
mkdir -p $out/etc
cp -a pastebinit $out/bin
cp -a utils/* $out/bin
cp -a pastebin.d $out/etc
substituteInPlace $out/bin/pastebinit --subst-var-by "etc" "$out/etc"
installManPage pastebinit.1
'';
meta = with lib; {
homepage = "https://stgraber.org/category/pastebinit/";
description = "Software that lets you send anything you want directly to a pastebin from the command line";
maintainers = with maintainers; [
raboof
samuel-martineau
];
license = licenses.gpl2Plus;
platforms = platforms.linux ++ lib.platforms.darwin;
};
}