nixpkgs/pkgs/by-name/pa/pastebinit/package.nix
Winter a19cd4ffb1 Revert "treewide: replace rev with tag"
This reverts commit 65a333600d.

This wasn't tested for correctness with something like fodwatch [0],
and should not have been (self-)merged so quickly, especially without
further review.

It also resulted in the breakage of at least one package [1] (and that's
the one we know of and was caught).

A few packages that were updated in between this commit and this revert
were not reverted back to using `rev`, but other than that, this is a
1:1 revert.

[0]: https://codeberg.org/raphaelr/fodwatch
[1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e458
2025-04-08 02:57:25 -04: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 = pname;
repo = pname;
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;
};
}