mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-28 01:29:35 +00:00

This reverts commit65a333600d
. 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
60 lines
1.2 KiB
Nix
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;
|
|
};
|
|
}
|