38 lines
803 B
Nix
38 lines
803 B
Nix
|
{ stdenv, fetchgit, buildPythonPackage
|
||
|
, python
|
||
|
, srht, pyyaml }:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "pastesrht";
|
||
|
version = "0.5.1";
|
||
|
|
||
|
src = fetchgit {
|
||
|
url = "https://git.sr.ht/~sircmpwn/paste.sr.ht";
|
||
|
rev = version;
|
||
|
sha256 = "0bzw03hcwi1pw16kliqjsr7kphqq3qw0pbpdjqkcs7jdr0a59vny";
|
||
|
};
|
||
|
|
||
|
patches = [
|
||
|
./use-srht-path.patch
|
||
|
];
|
||
|
|
||
|
nativeBuildInputs = srht.nativeBuildInputs;
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
srht
|
||
|
pyyaml
|
||
|
];
|
||
|
|
||
|
preBuild = ''
|
||
|
export PKGVER=${version}
|
||
|
export SRHT_PATH=${srht}/${python.sitePackages}/srht
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = https://git.sr.ht/~sircmpwn/paste.sr.ht;
|
||
|
description = "Ad-hoc text file hosting service for the sr.ht network";
|
||
|
license = licenses.agpl3;
|
||
|
maintainers = with maintainers; [ eadwu ];
|
||
|
};
|
||
|
}
|