ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / sm / smpq / package.nix
blob117e05d08735db901d3dcf798cd40ba48a5a24e3
2   lib,
3   cmake,
4   fetchurl,
5   stdenv,
6   stormlib,
7 }:
9 stdenv.mkDerivation (finalAttrs: {
10   pname = "smpq";
11   version = "1.6";
13   src = fetchurl {
14     url = "https://launchpad.net/smpq/trunk/${finalAttrs.version}/+download/smpq_${finalAttrs.version}.orig.tar.gz";
15     hash = "sha256-tdLcil3oYptx7l02ErboTYhBi4bFzTm6MV6esEYvGMs=";
16   };
18   cmakeFlags = [
19     (lib.cmakeBool "WITH_KDE" false)
20   ];
22   nativeBuildInputs = [ cmake ];
24   buildInputs = [ stormlib ];
26   strictDeps = true;
28   meta = {
29     homepage = "https://launchpad.net/smpq";
30     description = "StormLib MPQ archiving utility";
31     license = lib.licenses.gpl3Only;
32     mainProgram = "smpq";
33     maintainers = with lib.maintainers; [ aanderse karolchmist ];
34     platforms = lib.platforms.all;
35   };