summary refs log tree commit diff
path: root/pkgs/tools/misc/pastebinit/default.nix
blob: fd5004302dff966761213c3eaf498f1218ab4329 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, fetchurl, python3 }:

stdenv.mkDerivation rec {
  version = "1.4.1";
  name = "pastebinit-${version}";

  src = fetchurl {
    url = "https://launchpad.net/pastebinit/trunk/${version}/+download/${name}.tar.bz2";
    sha256 = "1rl854izwn1fpaaib6zj7a1a9bis8n7w4zfxcapgfffj37zj0dy2";
  };

  buildInputs = [ python3 ];

  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 stdenv.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 ];
    license = licenses.gpl2;
    platforms = platforms.linux;
  };
}