3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #184806 from tomhoule/update-prisma-to-4-1

nodePackages.prisma: 4.0.0 -> 4.1.1
This commit is contained in:
superherointj 2022-08-02 09:23:59 -03:00 committed by GitHub
commit 1b91a86dd3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 4 deletions

View file

@ -13100,6 +13100,12 @@
githubId = 61303; githubId = 61303;
name = "Tom Fitzhenry"; name = "Tom Fitzhenry";
}; };
tomhoule = {
email = "secondary+nixpkgs@tomhoule.com";
github = "tomhoule";
githubId = 13155277;
name = "Tom Houle";
};
tomsmeets = { tomsmeets = {
email = "tom.tsmeets@gmail.com"; email = "tom.tsmeets@gmail.com";
github = "TomSmeets"; github = "TomSmeets";

View file

@ -360,7 +360,7 @@ final: prev: {
src = fetchurl { src = fetchurl {
url = "https://registry.npmjs.org/prisma/-/prisma-${version}.tgz"; url = "https://registry.npmjs.org/prisma/-/prisma-${version}.tgz";
sha512 = "sha512-Dtsar03XpCBkcEb2ooGWO/WcgblDTLzGhPcustbehwlFXuTMliMDRzXsfygsgYwQoZnAUKRd1rhpvBNEUziOVw=="; sha512 = "sha512-yw50J8If2dKP4wYIi695zthsCASQFHiogGvUHHWd3falx/rpsD6Sb1LMLRV9nO3iGG3lozxNJ2PSINxK7xwdpg==";
}; };
postInstall = with pkgs; '' postInstall = with pkgs; ''
wrapProgram "$out/bin/prisma" \ wrapProgram "$out/bin/prisma" \

View file

@ -13,7 +13,7 @@
# function correctly. # function correctly.
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "prisma-engines"; pname = "prisma-engines";
version = "4.0.0"; version = "4.1.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "prisma"; owner = "prisma";
@ -25,7 +25,7 @@ rustPlatform.buildRustPackage rec {
# Use system openssl. # Use system openssl.
OPENSSL_NO_VENDOR = 1; OPENSSL_NO_VENDOR = 1;
cargoSha256 = "sha256-//Kis4lDi3SxeptCCnLi/GWPj+Kyay2pQbILYnlEkXE="; cargoSha256 = "sha256-srawH5z38/RvmsXIykSNm8D2DKAcleRJdyjKAAkVwgc=";
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ pkg-config ];
@ -59,7 +59,7 @@ rustPlatform.buildRustPackage rec {
homepage = "https://www.prisma.io/"; homepage = "https://www.prisma.io/";
license = licenses.asl20; license = licenses.asl20;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = with maintainers; [ pamplemousse pimeys superherointj ]; maintainers = with maintainers; [ pamplemousse pimeys superherointj tomhoule ];
}; };
} }