biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / wp4nix / default.nix
blob6a829b4ae26727d2c10ca8a1c0852e3dc8f0ef2a
1 { lib
2 , buildGoModule
3 , fetchFromGitLab
4 , nix
5 , subversion
6 , makeWrapper
7 }:
9 buildGoModule rec {
10   pname = "wp4nix";
11   version = "1.0.0";
13   src = fetchFromGitLab {
14     domain = "git.helsinki.tools";
15     owner = "helsinki-systems";
16     repo = "wp4nix";
17     rev = "v${version}";
18     sha256 = "sha256-WJteeFUMr684yZEtUP13MqRjJ1UAeo48AzOPdLEE65w=";
19   };
21   vendorHash = null;
23   nativeBuildInputs = [
24     makeWrapper
25   ];
27   postInstall = ''
28     wrapProgram $out/bin/wp4nix \
29       --prefix PATH : ${lib.makeBinPath [ nix subversion ]}
30   '';
32   meta = with lib; {
33     description = "Packaging helper for Wordpress themes and plugins";
34     mainProgram = "wp4nix";
35     homepage = "https://git.helsinki.tools/helsinki-systems/wp4nix";
36     license = licenses.mit;
37     maintainers = with maintainers; [ onny ];
38     platforms = platforms.unix;
39   };