1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00

Merge pull request #80983 from B4dM4n/seasocks-fix

seasocks: remove unneeded patch
This commit is contained in:
worldofpeace 2020-02-24 16:31:26 -05:00 committed by GitHub
commit 509533426b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, cmake, python, zlib, fetchpatch }:
{ stdenv, fetchFromGitHub, cmake, python, zlib }:
stdenv.mkDerivation rec {
pname = "seasocks";
@ -11,13 +11,6 @@ stdenv.mkDerivation rec {
sha256 = "1c2gc0k9wgbgn7y7wmq2ylp0gvdbmagc1x8c4jwbsncl1gy6x4g2";
};
patches = [
(fetchpatch {
url = "https://github.com/mattgodbolt/seasocks/commit/5753b50ce3b2232d166843450043f88a4a362422.patch";
sha256 = "1c20xjma8jdgcr5m321srpmys6b4jvqkazfqr668km3r2ck5xncl";
})
];
nativeBuildInputs = [ cmake ];
buildInputs = [ zlib python ];