mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
755b915a15
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/'
56 lines
1.2 KiB
Nix
56 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;
|
|
};
|
|
}
|