ps3-disc-dumper: 3.2.3 -> 4.2.5, .NET 6 -> 9 (#361506)
[NixPkgs.git] / pkgs / development / tools / analysis / snowman / default.nix
blob4cc3b44a37df3df89311fd3170d3344371ba32a4
2   lib,
3   mkDerivation,
4   fetchFromGitHub,
5   cmake,
6   boost,
7   qtbase,
8 }:
10 mkDerivation rec {
11   pname = "snowman";
12   version = "0.1.3";
14   src = fetchFromGitHub {
15     owner = "yegord";
16     repo = "snowman";
17     rev = "v${version}";
18     sha256 = "1mrmhj2nddi0d47c266vsg5vbapbqbcpj5ld4v1qcwnnk6z2zn0j";
19   };
21   nativeBuildInputs = [ cmake ];
23   buildInputs = [
24     boost
25     qtbase
26   ];
28   postUnpack = ''
29     export sourceRoot=$sourceRoot/src
30   '';
32   meta = with lib; {
33     description = "Native code to C/C++ decompiler";
34     homepage = "http://derevenets.com/";
36     # https://github.com/yegord/snowman/blob/master/doc/licenses.asciidoc
37     license = licenses.gpl3Plus;
38     maintainers = [ ];
39     platforms = platforms.all;
40   };