4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
53 lines
1.5 KiB
Nix
53 lines
1.5 KiB
Nix
{ lib, stdenv
|
|
, fetchurl
|
|
, fetchpatch
|
|
, python3
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.5";
|
|
pname = "pastebinit";
|
|
|
|
src = fetchurl {
|
|
url = "https://launchpad.net/pastebinit/trunk/${version}/+download/${pname}-${version}.tar.bz2";
|
|
sha256 = "0mw48fgm9lyh9d3pw997fccmglzsjccf2y347gxjas74wx6aira2";
|
|
};
|
|
|
|
buildInputs = [
|
|
(python3.withPackages (p: [ p.distro ]))
|
|
];
|
|
|
|
patchFlags = [ "-p0" ];
|
|
|
|
patches = [
|
|
# Required to allow pastebinit 1.5 to run on Python 3.8
|
|
(fetchpatch {
|
|
name = "use-distro-module.patch";
|
|
url = "https://bazaar.launchpad.net/~arnouten/pastebinit/python38/diff/264?context=3";
|
|
sha256 = "1gp5inp4xald65xbb7fc5aqq5s2fhw464niwjjja9anqyp3zhawj";
|
|
})
|
|
# Required because pastebin.com now redirects http requests to https
|
|
(fetchpatch {
|
|
name = "pastebin-com-https.patch";
|
|
url = "https://bazaar.launchpad.net/~arnouten/pastebinit/pastebin-com-https/diff/264?context=3";
|
|
sha256 = "0hxhhfcai0mll8qfyhdl3slmbf34ynb759b648x63274m9nd2kji";
|
|
})
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
mkdir -p $out/etc
|
|
cp -a pastebinit $out/bin
|
|
cp -a pastebin.d $out/etc
|
|
substituteInPlace $out/bin/pastebinit --replace "'/etc/pastebin.d" "'$out/etc/pastebin.d"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://launchpad.net/pastebinit";
|
|
description = "A software that lets you send anything you want directly to a pastebin from the command line";
|
|
maintainers = with maintainers; [ lethalman raboof ];
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|