Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, stdenv, fetchurl, gtk2, pkg-config }: 2 3stdenv.mkDerivation rec { 4 version = "0.2.8-6"; 5 pname = "xarchive"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/xarchive/${pname}-${version}.tar.gz"; 9 sha256 = "0chfim7z27s00naf43a61zsngwhvim14mg1p3csbv5i3f6m50xx4"; 10 }; 11 12 nativeBuildInputs = [ pkg-config ]; 13 buildInputs = [ gtk2 ]; 14 15 hardeningDisable = [ "format" ]; 16 17 meta = { 18 description = "A GTK front-end for command line archiving tools"; 19 maintainers = [ lib.maintainers.domenkozar ]; 20 license = lib.licenses.gpl2; 21 platforms = lib.platforms.all; 22 }; 23}