lol

Merge pull request #169183 from onny/wp4nix

authored by

Sandro and committed by
GitHub
cdb08878 f4a044a0

+32
+30
pkgs/development/tools/wp4nix/default.nix
··· 1 + { lib, buildGoModule, fetchFromGitLab, nix, subversion }: 2 + 3 + buildGoModule rec { 4 + pname = "wp4nix"; 5 + version = "1.0.0"; 6 + 7 + src = fetchFromGitLab { 8 + domain = "git.helsinki.tools"; 9 + owner = "helsinki-systems"; 10 + repo = "wp4nix"; 11 + rev = "v${version}"; 12 + sha256 = "sha256-WJteeFUMr684yZEtUP13MqRjJ1UAeo48AzOPdLEE65w="; 13 + }; 14 + 15 + vendorSha256 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo="; 16 + 17 + postPatch = '' 18 + substituteInPlace main.go --replace nix-hash ${nix}/bin/nix-hash 19 + substituteInPlace svn.go --replace '"svn"' '"${subversion}/bin/svn"' 20 + ''; 21 + 22 + meta = with lib; { 23 + description = "Packaging helper for Wordpress themes and plugins"; 24 + homepage = "https://git.helsinki.tools/helsinki-systems/wp4nix"; 25 + license = licenses.mit; 26 + maintainers = with maintainers; [ onny ]; 27 + platforms = platforms.linux; 28 + }; 29 + } 30 +
+2
pkgs/top-level/all-packages.nix
··· 30448 30448 30449 30449 wrapThunderbird = callPackage ../applications/networking/mailreaders/thunderbird/wrapper.nix { }; 30450 30450 30451 + wp4nix = callPackage ../development/tools/wp4nix { }; 30452 + 30451 30453 wp-cli = callPackage ../development/tools/wp-cli { }; 30452 30454 30453 30455 wsjtx = qt5.callPackage ../applications/radio/wsjtx { };