Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 594 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchurl 4, glibcLocales 5}: 6 7buildPythonPackage rec { 8 pname = "rpmfluff"; 9 version = "0.5.6"; 10 11 src = fetchurl { 12 url = "https://releases.pagure.org/${pname}/${pname}-${version}.tar.xz"; 13 sha256 = "0bhh8mv2kddhv3fiswg3zdl91d7vh93b33jlh1dmyz63z94rm88l"; 14 }; 15 16 LC_ALL="en_US.utf-8"; 17 buildInputs = [ glibcLocales ]; 18 19 meta = with stdenv.lib; { 20 description = "lightweight way of building RPMs, and sabotaging them"; 21 homepage = https://pagure.io/rpmfluff; 22 license = licenses.gpl2; 23 maintainers = with maintainers; [ disassembler ]; 24 }; 25 26}