nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 26 lines 661 B view raw
1{ lib, stdenv, fetchurl, cmake, StormLib }: 2 3stdenv.mkDerivation rec { 4 pname = "smpq"; 5 version = "1.6"; 6 7 src = fetchurl { 8 url = "https://launchpad.net/smpq/trunk/${version}/+download/${pname}_${version}.orig.tar.gz"; 9 sha256 = "1jqq5x3b17jy66x3kkf5hs5l322dx2v14djxxrqrnqp8bn5drlmm"; 10 }; 11 12 cmakeFlags = [ 13 "-DWITH_KDE=OFF" 14 ]; 15 16 nativeBuildInputs = [ cmake ]; 17 buildInputs = [ StormLib ]; 18 19 meta = with lib; { 20 description = "StormLib MPQ archiving utility"; 21 homepage = "https://launchpad.net/smpq"; 22 license = licenses.gpl3Only; 23 platforms = platforms.all; 24 maintainers = with maintainers; [ aanderse karolchmist ]; 25 }; 26}