python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / games / tes3cmd / default.nix
blob3778aadda9c5763fcf04d75996c6bb5d027df7be
1 { stdenv, lib, perlPackages, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4   pname = "tes3cmd";
5   version = "0.40-pre-release-2";
7   src = fetchFromGitHub {
8     owner = "john-moonsugar";
9     repo = pname;
10     rev = "f72e9ed9dd18e8545dd0dc2a4056c250cf505790";
11     sha256 = "01zqplp8yb0xnl54963n0zkz66rf3hn2x3i255jlhdhx1c43jba7";
12   };
14   buildInputs = [ perlPackages.perl ];
16   installPhase = ''
17     mkdir -p $out/bin
18     cp tes3cmd $out/bin/tes3cmd
19   '';
21   meta = with lib; {
22     description = "A command line tool for examining and modifying plugins for the Elder Scrolls game Morrowind by Bethesda Softworks";
23     homepage = "https://github.com/john-moonsugar/tes3cmd";
24     license = licenses.mit;
25     maintainers = [ maintainers.marius851000 ];
26     platforms = platforms.linux;
27   };